diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-08-26 16:10:09 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-08-26 16:10:09 +0200 |
commit | 337c8ca7f691b1b6295b8b4fa261bc899292ee1f (patch) | |
tree | 1a52cc187b9f4a97e5a800eb5f4e22eef3ba8e5d | |
parent | 792995075110f5205862ccee4d0275832a35b416 (diff) |
fixes
-rw-r--r-- | src/auditor/taler-helper-auditor-reserves.c | 2 | ||||
-rw-r--r-- | src/auditor/taler-helper-auditor-wire-credit.c | 13 |
2 files changed, 0 insertions, 15 deletions
diff --git a/src/auditor/taler-helper-auditor-reserves.c b/src/auditor/taler-helper-auditor-reserves.c index 8539ccaba..111290adf 100644 --- a/src/auditor/taler-helper-auditor-reserves.c +++ b/src/auditor/taler-helper-auditor-reserves.c @@ -46,8 +46,6 @@ static enum GNUNET_DB_QueryStatus global_qs; /** * Run in test mode. Exit when idle instead of * going to sleep and waiting for more work. - * - * FIXME: not yet implemented! */ static int test_mode; diff --git a/src/auditor/taler-helper-auditor-wire-credit.c b/src/auditor/taler-helper-auditor-wire-credit.c index 2cfa4b8ee..e1e15e88e 100644 --- a/src/auditor/taler-helper-auditor-wire-credit.c +++ b/src/auditor/taler-helper-auditor-wire-credit.c @@ -142,11 +142,6 @@ static struct WireAccount *wa_head; static struct WireAccount *wa_tail; /** - * Last reserve_in seen. - */ -// static TALER_ARL_DEF_PP (wire_reserve_in_id); // FIXME: new! - -/** * Amount that is considered "tiny" */ static struct TALER_Amount tiny_amount; @@ -169,11 +164,6 @@ static TALER_ARL_DEF_AB (total_bad_amount_in_minus); static TALER_ARL_DEF_AB (total_misattribution_in); /** - * Total amount affected by wire format troubles. - */ -static TALER_ARL_DEF_AB (total_wire_format_amount); // FIXME - -/** * Total amount credited to exchange accounts. */ static TALER_ARL_DEF_AB (total_wire_in); @@ -348,7 +338,6 @@ commit (enum GNUNET_DB_QueryStatus qs) TALER_ARL_SET_AB (total_bad_amount_in_plus), TALER_ARL_SET_AB (total_bad_amount_in_minus), TALER_ARL_SET_AB (total_misattribution_in), - TALER_ARL_SET_AB (total_wire_format_amount), NULL); if (0 > qs) goto handle_db_error; @@ -358,7 +347,6 @@ commit (enum GNUNET_DB_QueryStatus qs) TALER_ARL_SET_AB (total_bad_amount_in_plus), TALER_ARL_SET_AB (total_bad_amount_in_minus), TALER_ARL_SET_AB (total_misattribution_in), - TALER_ARL_SET_AB (total_wire_format_amount), NULL); if (0 > qs) goto handle_db_error; @@ -983,7 +971,6 @@ begin_transaction (void) TALER_ARL_GET_AB (total_bad_amount_in_plus), TALER_ARL_GET_AB (total_bad_amount_in_minus), TALER_ARL_GET_AB (total_misattribution_in), - TALER_ARL_GET_AB (total_wire_format_amount), NULL); switch (qs) { |