aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/wallet.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-05-02 10:59:50 +0200
committerFlorian Dold <florian@dold.me>2023-05-02 10:59:50 +0200
commit16d30adf0d57f6d954230c437e56e8a8700ef2ae (patch)
tree1f70267b3d4abd68df5be7da8ac769025a847e4e /packages/taler-wallet-core/src/wallet.ts
parentc4f5c83b8e8614ead5f48952ea8b60b5b3a3971c (diff)
downloadwallet-core-16d30adf0d57f6d954230c437e56e8a8700ef2ae.tar.xz
-withdrawal notifications
Diffstat (limited to 'packages/taler-wallet-core/src/wallet.ts')
-rw-r--r--packages/taler-wallet-core/src/wallet.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts
index ab9f43004..733c239f9 100644
--- a/packages/taler-wallet-core/src/wallet.ts
+++ b/packages/taler-wallet-core/src/wallet.ts
@@ -1221,7 +1221,7 @@ async function dispatchRequestInternal<Op extends WalletApiOperation>(
}
case WalletApiOperation.AbortTransaction: {
const req = codecForAbortTransaction().decode(payload);
- await abortTransaction(ws, req.transactionId, req.forceImmediateAbort);
+ await abortTransaction(ws, req.transactionId);
return {};
}
case WalletApiOperation.SuspendTransaction: {