diff options
author | Boss Marco <bossm8@bfh.ch> | 2021-10-26 11:04:02 +0200 |
---|---|---|
committer | Boss Marco <bossm8@bfh.ch> | 2021-10-26 11:04:02 +0200 |
commit | 4b05ba002ca07eb5722d9f4c5ef7383b48cc752e (patch) | |
tree | 5e0bd36042e2fbe85c1be8b883c4e11b6adbc724 /packages/taler-wallet-cli | |
parent | fb23bab6fe38f2e8d71ca51d8210b403d2514e3a (diff) |
remove string()
Diffstat (limited to 'packages/taler-wallet-cli')
-rw-r--r-- | packages/taler-wallet-cli/src/bench1.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-cli/src/bench1.ts b/packages/taler-wallet-cli/src/bench1.ts index 1d836365d..55558a284 100644 --- a/packages/taler-wallet-cli/src/bench1.ts +++ b/packages/taler-wallet-cli/src/bench1.ts @@ -54,7 +54,7 @@ export async function runBench1(configJson: any): Promise<void> { for (let i = 0; i < numIter; i++) { await wallet.client.call(WalletApiOperation.WithdrawFakebank, { - amount: b1conf.currency + ":" + string(withdrawAmount), + amount: b1conf.currency + ":" + withdrawAmount, bank: b1conf.bank, exchange: b1conf.exchange, }); |