taler-typescript-core

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

commit 302fdcd5fc3c8ae813d7575a066e7aebdb730b96
parent 4109285f780e19cd20a07495240f5ab712105979
Author: Florian Dold <florian@dold.me>
Date:   Sat, 18 Jul 2026 17:17:58 +0200

wallet-cli: fix odd int conversion

Diffstat:
Mpackages/taler-wallet-cli/src/index.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-wallet-cli/src/index.ts b/packages/taler-wallet-cli/src/index.ts @@ -1139,7 +1139,7 @@ withdrawCli { amount, exchangeBaseUrl, - restrictAge: parseInt(String(args.withdrawManually.restrictAge), 10), + restrictAge: args.withdrawManually.restrictAge, forceReservePriv: args.withdrawManually.forcedReservePriv, }, );