aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-09-20 02:56:13 +0200
committerFlorian Dold <florian.dold@gmail.com>2018-09-20 02:56:13 +0200
commitbbff7403fbf46f9ad92240ac213df8d30ef31b64 (patch)
treec58400ec5124da1c7d56b01aea83309f80a56c3b /src/wallet.ts
parent003fb34971cf63466184351b4db5f7c67df4f444 (diff)
downloadwallet-core-bbff7403fbf46f9ad92240ac213df8d30ef31b64.tar.xz
update packages
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);
+ }
}