gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: fix checks


From: gnunet
Subject: [taler-exchange] branch master updated: fix checks
Date: Fri, 27 Mar 2020 13:29:23 +0100

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

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 155a4bc1 fix checks
155a4bc1 is described below

commit 155a4bc11bab96316001325ff19af29eab9f6a71
Author: Christian Grothoff <address@hidden>
AuthorDate: Fri Mar 27 13:29:19 2020 +0100

    fix checks
---
 src/auditor/taler-helper-auditor-coins.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/auditor/taler-helper-auditor-coins.c 
b/src/auditor/taler-helper-auditor-coins.c
index d51b99d6..50e801d3 100644
--- a/src/auditor/taler-helper-auditor-coins.c
+++ b/src/auditor/taler-helper-auditor-coins.c
@@ -486,6 +486,7 @@ check_coin_history (const struct TALER_CoinSpendPublicKeyP 
*coin_pub,
   GNUNET_assert (GNUNET_OK ==
                  TALER_amount_get_zero (value->currency,
                                         &deposit_fee));
+  have_refund = GNUNET_NO;
   for (struct TALER_EXCHANGEDB_TransactionList *pos = tl;
        NULL != pos;
        pos = pos->next)
@@ -563,9 +564,10 @@ check_coin_history (const struct TALER_CoinSpendPublicKeyP 
*coin_pub,
     /* spent > total: bad */
     struct TALER_Amount loss;
 
-    TALER_amount_subtract (&loss,
-                           &spent,
-                           &total);
+    GNUNET_assert (GNUNET_OK ==
+                   TALER_amount_subtract (&loss,
+                                          &spent,
+                                          &total));
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                 "Loss detected for coin %s - %s\n",
                 TALER_B2S (coin_pub),

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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