taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 838cfcd4905f2e9791d28743ffcc68477e3c20be
parent 66aa29cf6cf0a113090b4f492cac77ccab75a9cb
Author: Florian Dold <dold@taler.net>
Date:   Tue, 25 Aug 2026 17:29:58 +0200

taler-harness: make coin config output stable

Diffstat:
Mpackages/taler-harness/src/index.ts | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/packages/taler-harness/src/index.ts b/packages/taler-harness/src/index.ts @@ -1800,8 +1800,6 @@ deploymentCli let out = ""; - const stamp = Math.floor(new Date().getTime() / 1000); - const coinMin = Amounts.parseOrThrow(args.coincfg.minAmount); const coinMax = Amounts.parseOrThrow(args.coincfg.maxAmount); if (coinMin.currency != coinMax.currency) { @@ -1842,7 +1840,7 @@ deploymentCli spec: feespecRefund, }); - out += `[coin_${currency}_n${n}_t${stamp}]\n`; + out += `[coin_${currency}_n${n}]\n`; out += `VALUE = ${Amounts.stringify(x)}\n`; out += `DURATION_WITHDRAW = 7 days\n`; out += `DURATION_SPEND = 2 years\n`;