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.ts12
1 files changed, 4 insertions, 8 deletions
diff --git a/packages/taler-wallet-core/src/operations/transactions.ts b/packages/taler-wallet-core/src/operations/transactions.ts
index 82cfec551..52b9819dd 100644
--- a/packages/taler-wallet-core/src/operations/transactions.ts
+++ b/packages/taler-wallet-core/src/operations/transactions.ts
@@ -418,26 +418,22 @@ export async function retryTransaction(
const depositGroupId = rest[0];
processDepositGroup(ws, depositGroupId, true);
break;
- case TransactionType.Withdrawal: {
+ case TransactionType.Withdrawal:
const withdrawalGroupId = rest[0];
await processWithdrawGroup(ws, withdrawalGroupId, true);
break;
- }
- case TransactionType.Payment: {
+ case TransactionType.Payment:
const proposalId = rest[0];
await processPurchasePay(ws, proposalId, true);
break;
- }
- case TransactionType.Tip: {
+ case TransactionType.Tip:
const walletTipId = rest[0];
await processTip(ws, walletTipId, true);
break;
- }
- case TransactionType.Refresh: {
+ case TransactionType.Refresh:
const refreshGroupId = rest[0];
await processRefreshGroup(ws, refreshGroupId, true);
break;
- }
default:
break;
}