aboutsummaryrefslogtreecommitdiff
path: root/src/auditor/taler-helper-auditor-aggregation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/auditor/taler-helper-auditor-aggregation.c')
-rw-r--r--src/auditor/taler-helper-auditor-aggregation.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/auditor/taler-helper-auditor-aggregation.c b/src/auditor/taler-helper-auditor-aggregation.c
index 4990ae405..c6398be2f 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;
127 * respect to calculations involving amounts. 127 * respect to calculations involving amounts.
128 * 128 *
129 * @param operation what operation had the inconsistency 129 * @param operation what operation had the inconsistency
130 * @param rowid affected row, UINT64_MAX if row is missing 130 * @param rowid affected row, 0 if row is missing
131 * @param exchange amount calculated by exchange 131 * @param exchange amount calculated by exchange
132 * @param auditor amount calculated by auditor 132 * @param auditor amount calculated by auditor
133 * @param profitable 1 if @a exchange being larger than @a auditor is 133 * @param profitable 1 if @a exchange being larger than @a auditor is
@@ -254,7 +254,7 @@ report_coin_arithmetic_inconsistency (
254 * Report a (serious) inconsistency in the exchange's database. 254 * Report a (serious) inconsistency in the exchange's database.
255 * 255 *
256 * @param table affected table 256 * @param table affected table
257 * @param rowid affected row, UINT64_MAX if row is missing 257 * @param rowid affected row, 0 if row is missing
258 * @param diagnostic message explaining the problem 258 * @param diagnostic message explaining the problem
259 */ 259 */
260static void 260static void
@@ -499,7 +499,7 @@ check_transaction_history_for_deposit (
499 { 499 {
500 /* Disagreement in fee structure between auditor and exchange DB! */ 500 /* Disagreement in fee structure between auditor and exchange DB! */
501 report_amount_arithmetic_inconsistency ("deposit fee", 501 report_amount_arithmetic_inconsistency ("deposit fee",
502 UINT64_MAX, 502 0,
503 fee_claimed, 503 fee_claimed,
504 &fee_expected, 504 &fee_expected,
505 1); 505 1);
@@ -524,7 +524,7 @@ check_transaction_history_for_deposit (
524 { 524 {
525 /* Disagreement in fee structure between exchange and auditor */ 525 /* Disagreement in fee structure between exchange and auditor */
526 report_amount_arithmetic_inconsistency ("melt fee", 526 report_amount_arithmetic_inconsistency ("melt fee",
527 UINT64_MAX, 527 0,
528 fee_claimed, 528 fee_claimed,
529 &fee_expected, 529 &fee_expected,
530 1); 530 1);
@@ -568,7 +568,7 @@ check_transaction_history_for_deposit (
568 { 568 {
569 /* Disagreement in fee structure between exchange and auditor! */ 569 /* Disagreement in fee structure between exchange and auditor! */
570 report_amount_arithmetic_inconsistency ("refund fee", 570 report_amount_arithmetic_inconsistency ("refund fee",
571 UINT64_MAX, 571 0,
572 fee_claimed, 572 fee_claimed,
573 &fee_expected, 573 &fee_expected,
574 1); 574 1);