summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-03-29 13:50:45 +0200
committerFlorian Dold <florian@dold.me>2022-03-29 13:50:45 +0200
commitcb18b9813e5df6e315dfb1827f5f7cf304977390 (patch)
tree0a2e86f3e4201020a5b2dd5890405f98297bab1d /packages/taler-wallet-core
parentc265e7d019d445add2d2cfb7cfcbdeee059684d3 (diff)
downloadwallet-core-cb18b9813e5df6e315dfb1827f5f7cf304977390.tar.gz
wallet-core-cb18b9813e5df6e315dfb1827f5f7cf304977390.tar.bz2
wallet-core-cb18b9813e5df6e315dfb1827f5f7cf304977390.zip
wallet: fix type error
Diffstat (limited to 'packages/taler-wallet-core')
-rw-r--r--packages/taler-wallet-core/src/operations/transactions.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/taler-wallet-core/src/operations/transactions.ts b/packages/taler-wallet-core/src/operations/transactions.ts
index bb5306189..0a3549451 100644
--- a/packages/taler-wallet-core/src/operations/transactions.ts
+++ b/packages/taler-wallet-core/src/operations/transactions.ts
@@ -450,19 +450,19 @@ export async function retryTransaction(
break;
case TransactionType.Withdrawal:
const withdrawalGroupId = rest[0];
- await processWithdrawGroup(ws, withdrawalGroupId, true);
+ await processWithdrawGroup(ws, withdrawalGroupId, { forceNow: true });
break;
case TransactionType.Payment:
const proposalId = rest[0];
- await processPurchasePay(ws, proposalId, true);
+ await processPurchasePay(ws, proposalId, { forceNow: true });
break;
case TransactionType.Tip:
const walletTipId = rest[0];
- await processTip(ws, walletTipId, true);
+ await processTip(ws, walletTipId, { forceNow: true });
break;
case TransactionType.Refresh:
const refreshGroupId = rest[0];
- await processRefreshGroup(ws, refreshGroupId, true);
+ await processRefreshGroup(ws, refreshGroupId, { forceNow: true });
break;
default:
break;