summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/wallet.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-12-13 11:28:15 +0100
committerFlorian Dold <florian@dold.me>2021-12-13 11:28:15 +0100
commitc493a3069ec330b955efd8604cb9d8b76277c74e (patch)
tree32fb0ad5306f4e7000da4997c27a1abf3da96fcf /packages/taler-wallet-core/src/wallet.ts
parent38d8239f937de047f127d37cd23ca6829db8e3e4 (diff)
downloadwallet-core-c493a3069ec330b955efd8604cb9d8b76277c74e.tar.gz
wallet-core-c493a3069ec330b955efd8604cb9d8b76277c74e.tar.bz2
wallet-core-c493a3069ec330b955efd8604cb9d8b76277c74e.zip
wallet-core: reset reserve retry when resetting withdrawal retry
Diffstat (limited to 'packages/taler-wallet-core/src/wallet.ts')
-rw-r--r--packages/taler-wallet-core/src/wallet.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts
index 7e7980795..ed0046c59 100644
--- a/packages/taler-wallet-core/src/wallet.ts
+++ b/packages/taler-wallet-core/src/wallet.ts
@@ -103,6 +103,7 @@ import {
MerchantOperations,
NotificationListener,
RecoupOperations,
+ ReserveOperations,
} from "./common.js";
import {
runIntegrationTest,
@@ -1122,6 +1123,10 @@ class InternalWalletStateImpl implements InternalWalletState {
getMerchantInfo: getMerchantInfo,
};
+ reserveOps: ReserveOperations = {
+ processReserve: processReserve,
+ }
+
/**
* Promises that are waiting for a particular resource.
*/