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-core: reset back-off w


From: gnunet
Subject: [taler-wallet-core] branch master updated: wallet-core: reset back-off when transitioning to pending(exchange-wait-reserve)
Date: Mon, 19 Feb 2024 03:38:49 +0100

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 77a531ea7 wallet-core: reset back-off when transitioning to 
pending(exchange-wait-reserve)
77a531ea7 is described below

commit 77a531ea7d4c1d73c4523ee5d9c5545ab4a9c6bf
Author: Florian Dold <florian@dold.me>
AuthorDate: Mon Feb 19 03:38:49 2024 +0100

    wallet-core: reset back-off when transitioning to 
pending(exchange-wait-reserve)
---
 packages/taler-wallet-core/src/operations/withdraw.ts | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts 
b/packages/taler-wallet-core/src/operations/withdraw.ts
index 4a50e0775..4d9996cf4 100644
--- a/packages/taler-wallet-core/src/operations/withdraw.ts
+++ b/packages/taler-wallet-core/src/operations/withdraw.ts
@@ -2251,7 +2251,11 @@ async function processReserveBankStatus(
 
   notifyTransition(ws, transactionId, transitionInfo);
 
-  return TaskRunResult.backoff();
+  if (transitionInfo) {
+    return TaskRunResult.progress();
+  } else {
+    return TaskRunResult.backoff();
+  }
 }
 
 export interface PrepareCreateWithdrawalGroupResult {

-- 
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]