taler-typescript-core

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

commit 4b05ba002ca07eb5722d9f4c5ef7383b48cc752e
parent fb23bab6fe38f2e8d71ca51d8210b403d2514e3a
Author: Boss Marco <bossm8@bfh.ch>
Date:   Tue, 26 Oct 2021 11:04:02 +0200

remove string()

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

diff --git 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, });