aboutsummaryrefslogtreecommitdiff
path: root/src/auditordb/pg_update_purse_info.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-11-02 17:51:42 +0100
committerChristian Grothoff <christian@grothoff.org>2022-11-02 17:51:42 +0100
commita51517f64c83c23545ebd8a935baa311f0de635a (patch)
tree8431dcad0c9aa743468b551828be021a1378f4a6 /src/auditordb/pg_update_purse_info.c
parent5c0b8e32406a7e000396003e9428a1cf9af3e919 (diff)
downloadexchange-a51517f64c83c23545ebd8a935baa311f0de635a.tar.xz
-implement missing functions
Diffstat (limited to 'src/auditordb/pg_update_purse_info.c')
-rw-r--r--src/auditordb/pg_update_purse_info.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/auditordb/pg_update_purse_info.c b/src/auditordb/pg_update_purse_info.c
index 0af0c913a..87c507b45 100644
--- a/src/auditordb/pg_update_purse_info.c
+++ b/src/auditordb/pg_update_purse_info.c
@@ -33,4 +33,23 @@ TAH_PG_update_purse_info (
const struct TALER_MasterPublicKeyP *master_pub,
const struct TALER_Amount *balance)
{
+
+ struct PostgresClosure *pg = cls;
+ struct GNUNET_PQ_QueryParam params[] = {
+ GNUNET_PQ_query_param_auto_from_type (purse_pub),
+ GNUNET_PQ_query_param_auto_from_type (master_pub),
+ TALER_PQ_query_param_amount (balance),
+ GNUNET_PQ_query_param_end
+ };
+
+ PREPARE (pg,
+ "auditor_purses_update",
+ "UPDATE auditor_purses SET "
+ " balance_val=$3"
+ ",balance_frac=$4"
+ " WHERE purse_pub=$1"
+ " AND master_pub=$2;");
+ return GNUNET_PQ_eval_prepared_non_select (pg->conn,
+ "auditor_purses_update",
+ params);
}