From 33a28efef74d1db0c08a8e9e3facf3656b4b29e1 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sat, 31 Jul 2021 21:48:36 +0200 Subject: -more json_pack fixes --- src/auditor/taler-helper-auditor-aggregation.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/auditor/taler-helper-auditor-aggregation.c') diff --git a/src/auditor/taler-helper-auditor-aggregation.c b/src/auditor/taler-helper-auditor-aggregation.c index 4990ae40..c6398be2 100644 --- a/src/auditor/taler-helper-auditor-aggregation.c +++ b/src/auditor/taler-helper-auditor-aggregation.c @@ -127,7 +127,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 @@ -254,7 +254,7 @@ report_coin_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 @@ -499,7 +499,7 @@ check_transaction_history_for_deposit ( { /* Disagreement in fee structure between auditor and exchange DB! */ report_amount_arithmetic_inconsistency ("deposit fee", - UINT64_MAX, + 0, fee_claimed, &fee_expected, 1); @@ -524,7 +524,7 @@ check_transaction_history_for_deposit ( { /* Disagreement in fee structure between exchange and auditor */ report_amount_arithmetic_inconsistency ("melt fee", - UINT64_MAX, + 0, fee_claimed, &fee_expected, 1); @@ -568,7 +568,7 @@ check_transaction_history_for_deposit ( { /* Disagreement in fee structure between exchange and auditor! */ report_amount_arithmetic_inconsistency ("refund fee", - UINT64_MAX, + 0, fee_claimed, &fee_expected, 1); -- cgit v1.2.3