gnunet-svn
[Top][All Lists]
Advanced

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

[taler-wallet-core] branch master updated (fb4896cf1 -> b0258d190)


From: gnunet
Subject: [taler-wallet-core] branch master updated (fb4896cf1 -> b0258d190)
Date: Wed, 18 Jan 2023 16:36:57 +0100

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

sebasjm pushed a change to branch master
in repository wallet-core.

    from fb4896cf1 backup section link justInDevMode
     new 44570081f fix zeroOfCurrency
     new b0258d190 fix tx pending state

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 packages/taler-wallet-core/src/operations/pay-peer.ts     | 2 +-
 packages/taler-wallet-core/src/operations/transactions.ts | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/packages/taler-wallet-core/src/operations/pay-peer.ts 
b/packages/taler-wallet-core/src/operations/pay-peer.ts
index bb36217d6..48434e452 100644
--- a/packages/taler-wallet-core/src/operations/pay-peer.ts
+++ b/packages/taler-wallet-core/src/operations/pay-peer.ts
@@ -319,7 +319,7 @@ export async function selectPeerCoins(
           exchangeFeeGap[exch.baseUrl] ?? Amounts.zeroOfCurrency(currency);
         if (Amounts.cmp(infoExchange.balanceMaterial, instructedAmount) < 0) {
           // Show fee gap only if we should've been able to pay with the 
material amount
-          gap = Amounts.zeroOfAmount(currency);
+          gap = Amounts.zeroOfCurrency(currency);
         }
         perExchange[exch.baseUrl] = {
           balanceAvailable: Amounts.stringify(infoExchange.balanceAvailable),
diff --git a/packages/taler-wallet-core/src/operations/transactions.ts 
b/packages/taler-wallet-core/src/operations/transactions.ts
index 0e86c77ed..3db548fa3 100644
--- a/packages/taler-wallet-core/src/operations/transactions.ts
+++ b/packages/taler-wallet-core/src/operations/transactions.ts
@@ -409,7 +409,9 @@ function buildTransactionForPullPaymentCredit(
     amountEffective: Amounts.stringify(wsr.denomsSel.totalCoinValue),
     amountRaw: Amounts.stringify(wsr.instructedAmount),
     exchangeBaseUrl: wsr.exchangeBaseUrl,
-    extendedStatus: ExtendedStatus.Done,
+    extendedStatus: wsr.timestampFinish
+      ? ExtendedStatus.Done
+      : ExtendedStatus.Pending,
     pending: !wsr.timestampFinish,
     timestamp: wsr.timestampStart,
     info: {

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