aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/transactions.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-core/src/operations/transactions.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/transactions.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/operations/transactions.ts b/packages/taler-wallet-core/src/operations/transactions.ts
index e3cfa0c25..ac502fc08 100644
--- a/packages/taler-wallet-core/src/operations/transactions.ts
+++ b/packages/taler-wallet-core/src/operations/transactions.ts
@@ -106,6 +106,7 @@ import { computeTipTransactionStatus, processTip } from "./tip.js";
import {
abortWithdrawalTransaction,
augmentPaytoUrisForWithdrawal,
+ cancelAbortingWithdrawalTransaction,
computeWithdrawalTransactionStatus,
processWithdrawalGroup,
} from "./withdraw.js";
@@ -1415,6 +1416,9 @@ export async function cancelAbortingTransaction(
case TransactionType.Deposit:
await cancelAbortingDepositGroup(ws, tx.depositGroupId);
return;
+ case TransactionType.Withdrawal:
+ await cancelAbortingWithdrawalTransaction(ws, tx.withdrawalGroupId);
+ return;
default:
logger.warn(`unable to suspend transaction of type '${tx.tag}'`);
}