diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-07-31 21:48:36 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-07-31 21:48:36 +0200 |
commit | 33a28efef74d1db0c08a8e9e3facf3656b4b29e1 (patch) | |
tree | e35dd51b3364f9c41a40a6e8a8c715b1b623d35c /src/auditor/taler-helper-auditor-reserves.c | |
parent | fde9dc80f6e6a5fe4c5856b2ed78e6c024528c43 (diff) |
-more json_pack fixes
Diffstat (limited to 'src/auditor/taler-helper-auditor-reserves.c')
-rw-r--r-- | src/auditor/taler-helper-auditor-reserves.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/auditor/taler-helper-auditor-reserves.c b/src/auditor/taler-helper-auditor-reserves.c index 22d7f5c27..efeaa4f63 100644 --- a/src/auditor/taler-helper-auditor-reserves.c +++ b/src/auditor/taler-helper-auditor-reserves.c @@ -155,7 +155,7 @@ static int internal_checks; * respect to calculations involving amounts. * * @param operation what operation had the inconsistency - * @param rowid affected row, UINT64_MAX if row is missing + * @param rowid affected row, 0 if row is missing * @param exchange amount calculated by exchange * @param auditor amount calculated by auditor * @param profitable 1 if @a exchange being larger than @a auditor is @@ -218,7 +218,7 @@ report_amount_arithmetic_inconsistency ( * Report a (serious) inconsistency in the exchange's database. * * @param table affected table - * @param rowid affected row, UINT64_MAX if row is missing + * @param rowid affected row, 0 if row is missing * @param diagnostic message explaining the problem */ static void @@ -1231,7 +1231,7 @@ verify_reserve_balance (void *cls, to be withdrawn more than it was IN TOTAL ever given (exchange balance went negative!). Woopsie. Calculate how badly it went and log. */ report_amount_arithmetic_inconsistency ("global escrow balance", - UINT64_MAX, + 0, &total_escrow_balance, /* what we had */ &rs->total_out, /* what we needed */ 0 /* specific profit/loss does not apply to the total summary */); |