diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-04-04 15:38:58 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-04-04 15:38:58 +0200 |
commit | 4b82a591c54bec9720181358c8230caa3759363f (patch) | |
tree | c4f5ab8a5f93c6640ee1c8ce311b3bb6e13d3f86 /src/exchangedb/test_exchangedb.c | |
parent | cc3aa31732b2c214e6733206e713387d5ef8d39a (diff) |
handle /payback in auditor when checking reserves
Diffstat (limited to 'src/exchangedb/test_exchangedb.c')
-rw-r--r-- | src/exchangedb/test_exchangedb.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/exchangedb/test_exchangedb.c b/src/exchangedb/test_exchangedb.c index e8fd21194..49cc64316 100644 --- a/src/exchangedb/test_exchangedb.c +++ b/src/exchangedb/test_exchangedb.c @@ -1205,8 +1205,9 @@ static struct TALER_Amount wire_out_amount; * @param wtid wire transfer subject * @param wire wire transfer details of the receiver * @param amount amount that was wired + * @return #GNUNET_OK to continue, #GNUNET_SYSERR to stop iteration */ -static void +static int audit_wire_cb (void *cls, uint64_t rowid, struct GNUNET_TIME_Absolute date, @@ -1223,6 +1224,7 @@ audit_wire_cb (void *cls, &wire_out_wtid, sizeof (*wtid))); GNUNET_assert (date.abs_value_us == wire_out_date.abs_value_us); + return GNUNET_OK; } |