merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit c0a82a70c275a15b21d0e8c711f2d0e25e5621bf
parent 0e6d417b5dc89d00bf530b2cdd40816647709a40
Author: Sebastian <sebasjm@taler-systems.com>
Date:   Fri,  9 Jan 2026 10:29:10 -0300

fixing typos

Diffstat:
Msrc/backenddb/pg_select_money_pot.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/backenddb/pg_select_money_pot.c b/src/backenddb/pg_select_money_pot.c @@ -47,7 +47,7 @@ TMH_PG_select_money_pot (void *cls, GNUNET_PQ_result_spec_string ("money_pot_description", description), TALER_PQ_result_spec_array_amount_with_currency (pg->conn, - "pot_total", + "pot_totals", pot_total_len, pot_totals), GNUNET_PQ_result_spec_end @@ -59,12 +59,12 @@ TMH_PG_select_money_pot (void *cls, "SELECT" " mp.money_pot_name" " ,mp.money_pot_description" - " ,mp.pot_total" + " ,mp.pot_totals" " FROM merchant_money_pots mp" " JOIN merchant_instances mi" " USING (merchant_serial)" " WHERE merchant_id=$1" - " AND report_serial=$2;"); + " AND money_pot_serial=$2;"); return GNUNET_PQ_eval_prepared_singleton_select ( pg->conn, "select_money_pot",