diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-18 18:17:38 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-18 18:17:38 +0100 |
commit | d58af138874914569a3192e10a7b2d9aaa21dbe5 (patch) | |
tree | 432e848695aa11070d089799c6d0a2dd18337414 /src | |
parent | ee6b2d5286df473cf51575b025117f273cfa14be (diff) |
fix assertion
Diffstat (limited to 'src')
-rw-r--r-- | src/auditor/taler-auditor.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/auditor/taler-auditor.c b/src/auditor/taler-auditor.c index cc526ec85..fb44e87e3 100644 --- a/src/auditor/taler-auditor.c +++ b/src/auditor/taler-auditor.c @@ -2894,7 +2894,8 @@ check_wire_out_cb GNUNET_free (method); /* Round down to amount supported by wire method */ - GNUNET_break (TALER_amount_round_down (&final_amount, + GNUNET_break (GNUNET_SYSERR != + TALER_amount_round_down (&final_amount, ¤cy_round_unit)); /* Calculate the exchange's gain as the fees plus rounding differences! */ |