commit cebd3d507e47fd10670b2f3514fc3ba40ad79f1a
parent 5c36bb8c8e17f7c1d5c269bd6ed0625317939b4d
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Wed, 1 Jul 2026 16:10:41 +0200
name prepred statement consistently (will not fix #11593)
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/backenddb/select_wirewatch_accounts.c b/src/backenddb/select_wirewatch_accounts.c
@@ -120,7 +120,7 @@ TALER_MERCHANTDB_select_wirewatch_accounts (
enum GNUNET_DB_QueryStatus qs;
PREPARE (pg,
- "select_wirewatch_progress",
+ "select_wirewatch_accounts",
"SELECT"
" out_last_bank_serial"
" ,out_merchant_id"
@@ -129,7 +129,7 @@ TALER_MERCHANTDB_select_wirewatch_accounts (
" ,out_credit_facade_credentials::TEXT"
" FROM merchant.select_wirewatch_accounts()");
qs = GNUNET_PQ_eval_prepared_multi_select (pg->conn,
- "select_wirewatch_progress",
+ "select_wirewatch_accounts",
params,
&handle_results,
&ctx);