diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-16 23:49:34 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-16 23:49:34 +0100 |
commit | d61c2e400ac07574fc326c8d2be6f51be7c2a25c (patch) | |
tree | 277d9bf5ad2cd160a85d75992ae590e59dd28ac9 /src/exchangedb/exchangedb_transactions.c | |
parent | 0305cf5f9eb904e7a3ab3e8d39f4974a92a9a0b3 (diff) |
kill another FIXME
Diffstat (limited to 'src/exchangedb/exchangedb_transactions.c')
-rw-r--r-- | src/exchangedb/exchangedb_transactions.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/exchangedb/exchangedb_transactions.c b/src/exchangedb/exchangedb_transactions.c index 2891f0adb..871061aa2 100644 --- a/src/exchangedb/exchangedb_transactions.c +++ b/src/exchangedb/exchangedb_transactions.c @@ -46,8 +46,9 @@ TALER_EXCHANGEDB_calculate_transaction_list_totals (struct GNUNET_assert (GNUNET_OK == TALER_amount_get_zero (spent.currency, &refunded)); - for (struct TALER_EXCHANGEDB_TransactionList *pos = tl; NULL != pos; pos = - pos->next) + for (struct TALER_EXCHANGEDB_TransactionList *pos = tl; + NULL != pos; + pos = pos->next) { switch (pos->type) { @@ -67,7 +68,7 @@ TALER_EXCHANGEDB_calculate_transaction_list_totals (struct if (GNUNET_OK != TALER_amount_add (&spent, &spent, - &pos->details.melt->session.amount_with_fee)) + &pos->details.melt->amount_with_fee)) { GNUNET_break (0); return GNUNET_SYSERR; |