aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet.ts')
-rw-r--r--src/wallet.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index 8655c59ca..434eb8b8c 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -91,6 +91,7 @@ import {
} from "./talerTypes";
import {
Badge,
+ BenchmarkResult,
CheckPayResult,
CoinSelectionResult,
CoinWithDenom,
@@ -3034,4 +3035,8 @@ export class Wallet {
clearNotification(): void {
this.badge.clearNotification();
}
+
+ benchmarkCrypto(repetitions: number): Promise<BenchmarkResult> {
+ return this.cryptoApi.benchmark(repetitions);
+ }
}