commit ccb14378c55a816037c404dbc4405a78246bf8a4
parent fff6a7608552a9bf90f8de42ca3618bdda64a7d4
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 13 Aug 2026 21:32:21 +0200
fix query params
Diffstat:
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/exchangedb/insert_records_by_table.c b/src/exchangedb/insert_records_by_table.c
@@ -559,7 +559,7 @@ irbt_cb_table_reserves_open_requests (
/**
- * Function called with reserves_open_requests records to insert into table.
+ * Function called with reserves_open_deposits records to insert into table.
*
* @param pg plugin context
* @param td record to insert
@@ -572,11 +572,13 @@ irbt_cb_table_reserves_open_deposits (
struct GNUNET_PQ_QueryParam params[] = {
GNUNET_PQ_query_param_uint64 (&td->serial),
GNUNET_PQ_query_param_auto_from_type (
+ &td->details.reserves_open_deposits.reserve_sig),
+ GNUNET_PQ_query_param_auto_from_type (
+ &td->details.reserves_open_deposits.reserve_pub),
+ GNUNET_PQ_query_param_auto_from_type (
&td->details.reserves_open_deposits.coin_pub),
GNUNET_PQ_query_param_auto_from_type (
&td->details.reserves_open_deposits.coin_sig),
- GNUNET_PQ_query_param_auto_from_type (
- &td->details.reserves_open_deposits.reserve_sig),
TALER_PQ_query_param_amount (
pg->conn,
&td->details.reserves_open_deposits.contribution),