gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated: wallet: fix type error


From: gnunet
Subject: [taler-wallet-core] branch master updated: wallet: fix type error
Date: Tue, 29 Mar 2022 13:50:52 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new cb18b981 wallet: fix type error
cb18b981 is described below

commit cb18b9813e5df6e315dfb1827f5f7cf304977390
Author: Florian Dold <florian@dold.me>
AuthorDate: Tue Mar 29 13:50:45 2022 +0200

    wallet: fix type error
---
 packages/taler-wallet-core/src/operations/transactions.ts | 8 ++++----
 1 file 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 bb530618..0a354945 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;

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]