merchant

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

commit 09edba887b8f9f82b1c8cc462ff6faed80d387c8
parent 79762a92ca0635074d62a2c4237003e87a6b0bb5
Author: Florian Dold <florian@dold.me>
Date:   Mon,  7 Mar 2022 11:21:13 +0100

fix FTBFS

Diffstat:
Msrc/backend/taler-merchant-httpd_exchanges.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/backend/taler-merchant-httpd_exchanges.c b/src/backend/taler-merchant-httpd_exchanges.c @@ -395,7 +395,7 @@ process_wire_fees (struct Exchange *exchange, TALER_B2S (master_pub), wire_method, GNUNET_TIME_timestamp2s (af->start_date), - TALER_amount2s (&af->wire_fee)); + TALER_amount2s (&af->fees.wire)); TMH_db->preflight (TMH_db->cls); if (GNUNET_OK != TMH_db->start (TMH_db->cls, @@ -410,8 +410,8 @@ process_wire_fees (struct Exchange *exchange, qs = TMH_db->store_wire_fee_by_exchange (TMH_db->cls, master_pub, &h_wire_method, - &af->wire_fee, - &af->closing_fee, + &af->fees.wire, + &af->fees.closing, af->start_date, af->end_date, &af->master_sig); @@ -618,7 +618,7 @@ process_find_operations (struct Exchange *exchange) &hr, exchange->conn, (NULL != fbw) ? fbw->payto_uri : NULL, - (NULL != fbw) ? &fbw->af->wire_fee : NULL, + (NULL != fbw) ? &fbw->af->fees.wire : NULL, exchange->trusted); } TMH_EXCHANGES_find_exchange_cancel (fo);