diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-03-17 19:06:26 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-03-17 19:06:26 +0100 |
commit | 543b4f7a7c72bf5cdaa8d0fb3480e935223cf26f (patch) | |
tree | c6c50d5e43bc179784c690b29b52e5c6d49fa53e | |
parent | 3d1d78f23af68de52fcf49f6412b44882bbd5e22 (diff) |
fix FTBFS of test
-rw-r--r-- | src/auditor/taler-auditor.c | 7 | ||||
-rw-r--r-- | src/auditordb/test_auditordb.c | 12 |
2 files changed, 0 insertions, 19 deletions
diff --git a/src/auditor/taler-auditor.c b/src/auditor/taler-auditor.c index 48eb30cbe..cf7e332b4 100644 --- a/src/auditor/taler-auditor.c +++ b/src/auditor/taler-auditor.c @@ -36,13 +36,6 @@ * - deal with risk / expired denomination keys in #sync_denomination * - write reporting logic to output nice report beyond GNUNET_log() * - write logic to deal with emergency (#3887) -- and emergency-related tables! - * - * EXTERNAL: - * - add tool to pay-back expired reserves (#4956), and support here - * - add tool to verify 'reserves_in' from wire transfer inspection - * - add tool to verify 'wire_out (TBD)' from wire transfer inspection - * - add tool to trigger computation of historic revenues - * (move balances from 'current' revenue/profits to 'historic' tables) */ #include "platform.h" #include <gnunet/gnunet_util_lib.h> diff --git a/src/auditordb/test_auditordb.c b/src/auditordb/test_auditordb.c index 95e79bdb3..5aaabb5a2 100644 --- a/src/auditordb/test_auditordb.c +++ b/src/auditordb/test_auditordb.c @@ -376,9 +376,6 @@ run (void *cls) plugin->insert_denomination_balance (plugin->cls, session, &denom_pub_hash, - &refund_fee_balance, - &melt_fee_balance, - &deposit_fee_balance, &denom_balance, pp.last_reserve_out_serial_id, pp.last_deposit_serial_id, @@ -398,9 +395,6 @@ run (void *cls) session, &denom_pub_hash, &denom_balance, - &deposit_fee_balance, - &melt_fee_balance, - &refund_fee_balance, pp.last_reserve_out_serial_id, pp.last_deposit_serial_id, pp.last_melt_serial_id, @@ -414,18 +408,12 @@ run (void *cls) session, &denom_pub_hash, &denom_balance2, - &deposit_fee_balance2, - &melt_fee_balance2, - &refund_fee_balance2, &pp2.last_reserve_out_serial_id, &pp2.last_deposit_serial_id, &pp2.last_melt_serial_id, &pp2.last_refund_serial_id)); FAILIF (0 != memcmp (&denom_balance2, &denom_balance, sizeof (denom_balance)) - || 0 != memcmp (&deposit_fee_balance2, &deposit_fee_balance, sizeof (deposit_fee_balance)) - || 0 != memcmp (&melt_fee_balance2, &melt_fee_balance, sizeof (melt_fee_balance)) - || 0 != memcmp (&refund_fee_balance2, &refund_fee_balance, sizeof (refund_fee_balance)) || pp2.last_reserve_out_serial_id != pp.last_reserve_out_serial_id || pp2.last_deposit_serial_id != pp.last_deposit_serial_id || pp2.last_melt_serial_id != pp.last_melt_serial_id |