tolerate total-amount==fee in aggregator

This commit is contained in:
Christian Grothoff 2017-07-05 19:08:09 +02:00
parent 34887e55eb
commit 1910d6648c
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -597,7 +597,7 @@ deposit_cb (void *cls,
enum GNUNET_DB_QueryStatus qs;
au->merchant_pub = *merchant_pub;
if (GNUNET_OK !=
if (GNUNET_SYSERR ==
TALER_amount_subtract (&au->total_amount,
amount_with_fee,
deposit_fee))
@ -694,7 +694,7 @@ aggregate_cb (void *cls,
merchant_pub,
sizeof (struct TALER_MerchantPublicKeyP)));
/* compute contribution of this coin after fees */
if (GNUNET_OK !=
if (GNUNET_SYSERR ==
TALER_amount_subtract (&delta,
amount_with_fee,
deposit_fee))