commit 54c24b4671b297966d2f98a82b5f5ea4fc920e89
parent 4c16d76d90f7caeacf4df9e6f4eb30d39e76f3f9
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Sun, 16 Aug 2026 22:17:06 +0200
needs signed int8
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/exchangedb/account_history.c b/src/exchangedb/account_history.c
@@ -93,7 +93,9 @@ TALER_EXCHANGEDB_aml_history_builder (void *cls)
qs = TALER_EXCHANGEDB_iterate_aml_history (
hbc->pg,
acc,
- UINT64_MAX, /* offset */
+ INT64_MAX, /* offset; note: the offset is passed to Postgres as a
+ signed INT8, so UINT64_MAX would arrive as -1 and
+ match nothing */
-16 * 1024, /* limit: none for all practical purposes (for now) */
&add_aml_history_entry,
aml_history);