diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-08-26 14:00:09 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-08-26 14:00:09 +0200 |
commit | 792995075110f5205862ccee4d0275832a35b416 (patch) | |
tree | 0cd90041e1abfd9f641703578ba89ced56752fa5 | |
parent | 713b8b098a1f72f0434c502933800470f2b31064 (diff) |
fix error handling
-rw-r--r-- | src/auditor/taler-helper-auditor-aggregation.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/auditor/taler-helper-auditor-aggregation.c b/src/auditor/taler-helper-auditor-aggregation.c index 1a390a511..859626b72 100644 --- a/src/auditor/taler-helper-auditor-aggregation.c +++ b/src/auditor/taler-helper-auditor-aggregation.c @@ -35,8 +35,6 @@ static int global_ret; /** * 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; @@ -458,7 +456,7 @@ check_transaction_history_for_deposit ( if (qs < 0) { GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs); - // FIXME: error handling + return qs; } } deposited = &tl->details.deposit->amount_with_fee; /* according to exchange*/ |