diff options
author | Sebastian <sebasjm@gmail.com> | 2022-05-04 16:11:12 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2022-05-04 16:26:53 -0300 |
commit | 4491118494c332c9ce0a0c4533804744d63701f2 (patch) | |
tree | 883cef2f190321bf07d0d1b53f5842e9c9c6ddbd /packages/taler-wallet-cli | |
parent | f16d2e52d51b931d18abd9d87568be681339350f (diff) |
add restricted option to manual withdraw
Diffstat (limited to 'packages/taler-wallet-cli')
-rw-r--r-- | packages/taler-wallet-cli/src/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/taler-wallet-cli/src/index.ts b/packages/taler-wallet-cli/src/index.ts index a4c99902c..5ba6e4bf2 100644 --- a/packages/taler-wallet-cli/src/index.ts +++ b/packages/taler-wallet-cli/src/index.ts @@ -775,6 +775,7 @@ advancedCli .requiredOption("amount", ["--amount"], clk.STRING, { help: "Amount to withdraw", }) + .maybeOption("restrictAge", ["--restrict-age"], clk.INT) .action(async (args) => { await withWallet(args, async (wallet) => { const exchangeBaseUrl = args.withdrawManually.exchange; @@ -796,6 +797,7 @@ advancedCli { amount, exchangeBaseUrl, + restrictAge: parseInt(String(args.withdrawManually.restrictAge), 10), }, ); const reservePub = resp.reservePub; |