gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] branch master updated: fix SQL


From: gnunet
Subject: [taler-exchange] branch master updated: fix SQL
Date: Fri, 23 Aug 2024 09:10:22 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 7bf67326d fix SQL
7bf67326d is described below

commit 7bf67326d250e2a7d63d129f7d7210d5f50324a1
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Fri Aug 23 09:10:19 2024 +0200

    fix SQL
---
 src/auditordb/pg_insert_misattribution_in_inconsistency.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/auditordb/pg_insert_misattribution_in_inconsistency.c 
b/src/auditordb/pg_insert_misattribution_in_inconsistency.c
index 1db7d86d6..c557160da 100644
--- a/src/auditordb/pg_insert_misattribution_in_inconsistency.c
+++ b/src/auditordb/pg_insert_misattribution_in_inconsistency.c
@@ -25,7 +25,8 @@ TAH_PG_insert_misattribution_in_inconsistency (
 {
   struct PostgresClosure *pg = cls;
   struct GNUNET_PQ_QueryParam params[] = {
-    TALER_PQ_query_param_amount (pg->conn, &dc->amount),
+    TALER_PQ_query_param_amount (pg->conn,
+                                 &dc->amount),
     GNUNET_PQ_query_param_uint64 (&dc->bank_row),
     GNUNET_PQ_query_param_auto_from_type (&dc->reserve_pub),
     GNUNET_PQ_query_param_end
@@ -34,11 +35,10 @@ TAH_PG_insert_misattribution_in_inconsistency (
   PREPARE (pg,
            "auditor_misattribution_in_inconsistency_insert",
            "INSERT INTO auditor_misattribution_in_inconsistency "
-           "(row_id,"
-           " amount,"
+           "(amount,"
            " bank_row,"
            " reserve_pub"
-           ") VALUES ($1,$2,$3,$4);"
+           ") VALUES ($1,$2,$3);"
            );
   return GNUNET_PQ_eval_prepared_non_select (pg->conn,
                                              
"auditor_misattribution_in_inconsistency_insert",

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]