commit 2fcc6cfcda58826db33b2514d8c72c581d8788bd
parent bdadf33588cdf11ab356a757ecead57d2a4a7962
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 29 Dec 2024 23:22:08 +0100
fix swapped arguments
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/auditordb/test_auditordb.c b/src/auditordb/test_auditordb.c
@@ -419,8 +419,8 @@ run (void *cls)
FAILIF (0 >=
plugin->select_historic_denom_revenue (
plugin->cls,
- 0,
- 1024,
+ 1024, /* limit */
+ 0, /* offset */
&select_historic_denom_revenue_result,
NULL));
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
@@ -443,8 +443,8 @@ run (void *cls)
FAILIF (0 >=
plugin->select_historic_reserve_revenue (
plugin->cls,
- 0,
- 1024,
+ 1024, /* limit */
+ 0, /* offset */
&select_historic_reserve_revenue_result,
NULL));