aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-cli/src/bench2.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-cli/src/bench2.ts')
-rw-r--r--packages/taler-wallet-cli/src/bench2.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/taler-wallet-cli/src/bench2.ts b/packages/taler-wallet-cli/src/bench2.ts
index 43c28882e..c1fa674c4 100644
--- a/packages/taler-wallet-cli/src/bench2.ts
+++ b/packages/taler-wallet-cli/src/bench2.ts
@@ -27,7 +27,7 @@ import {
import {
checkReserve,
createFakebankReserve,
- CryptoApi,
+ CryptoDispatcher,
depositCoin,
downloadExchangeInfo,
findDenomOrThrow,
@@ -50,7 +50,8 @@ export async function runBench2(configJson: any): Promise<void> {
// Validate the configuration file for this benchmark.
const benchConf = codecForBench2Config().decode(configJson);
const curr = benchConf.currency;
- const cryptoApi = new CryptoApi(new SynchronousCryptoWorkerFactory());
+ const cryptoDisp = new CryptoDispatcher(new SynchronousCryptoWorkerFactory());
+ const cryptoApi = cryptoDisp.cryptoApi;
const http = new NodeHttpLib();
http.setThrottling(false);