diff options
author | Florian Dold <florian@dold.me> | 2022-03-07 11:21:13 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2022-03-07 11:21:13 +0100 |
commit | 09edba887b8f9f82b1c8cc462ff6faed80d387c8 (patch) | |
tree | 58644393e692aafaf8b801e6e54ab9f98fbda2e8 /src | |
parent | 79762a92ca0635074d62a2c4237003e87a6b0bb5 (diff) |
fix FTBFS
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/taler-merchant-httpd_exchanges.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/taler-merchant-httpd_exchanges.c b/src/backend/taler-merchant-httpd_exchanges.c index accbd9c9..65971eee 100644 --- 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); |