exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit ddbdb0a742ffb1d5d08657abb8ae5e3ca3caaf92
parent 4ea2e0c42a5d5591241570dd26a54e0b22a89b33
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon, 14 Nov 2022 05:13:27 +0100

resolve duplicate prepared statement

Diffstat:
Msrc/exchangedb/plugin_exchangedb_postgres.c | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c @@ -265,10 +265,9 @@ prepare_statements (struct PostgresClosure *pg) { enum GNUNET_GenericReturnValue ret; struct GNUNET_PQ_PreparedStatement ps[] = { - /* Used in #postgres_insert_denomination_info() and - #postgres_add_denomination_key() */ + /* Used in #postgres_add_denomination_key() */ GNUNET_PQ_make_prepare ( - "denomination_insert", + "add_denomination_key", "INSERT INTO denominations " "(denom_pub_hash" ",denom_pub" @@ -8409,7 +8408,7 @@ postgres_add_denomination_key ( TALER_denom_fee_check_currency (meta->value.currency, &meta->fees)); return GNUNET_PQ_eval_prepared_non_select (pg->conn, - "denomination_insert", + "add_denomination_key", iparams); }