summaryrefslogtreecommitdiff
path: root/src/auditordb/pg_update_wire_fee_summary.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/auditordb/pg_update_wire_fee_summary.c')
-rw-r--r--src/auditordb/pg_update_wire_fee_summary.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/auditordb/pg_update_wire_fee_summary.c b/src/auditordb/pg_update_wire_fee_summary.c
index 28ee39c44..192612f17 100644
--- a/src/auditordb/pg_update_wire_fee_summary.c
+++ b/src/auditordb/pg_update_wire_fee_summary.c
@@ -29,22 +29,19 @@
enum GNUNET_DB_QueryStatus
TAH_PG_update_wire_fee_summary (
void *cls,
- const struct TALER_MasterPublicKeyP *master_pub,
const struct TALER_Amount *wire_fee_balance)
{
struct PostgresClosure *pg = cls;
struct GNUNET_PQ_QueryParam params[] = {
- TALER_PQ_query_param_amount (wire_fee_balance),
- GNUNET_PQ_query_param_auto_from_type (master_pub),
+ TALER_PQ_query_param_amount (pg->conn,
+ wire_fee_balance),
GNUNET_PQ_query_param_end
};
PREPARE (pg,
"auditor_wire_fee_balance_update",
"UPDATE auditor_wire_fee_balance SET"
- " wire_fee_balance_val=$1"
- ",wire_fee_balance_frac=$2"
- " WHERE master_pub=$3;");
+ " wire_fee_balance=$1");
return GNUNET_PQ_eval_prepared_non_select (pg->conn,
"auditor_wire_fee_balance_update",
params);