diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-02-17 17:21:09 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-02-17 17:21:09 +0100 |
commit | 81c66331ce84f001ae064d9827bd40e6e65fd9c5 (patch) | |
tree | 908646f63f94be189011d17403fbb113537a05ce /src | |
parent | 1ec3eecef1318dd9c7b21c2d1a5b61dc6ae8e708 (diff) |
-fix FTBFS
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/taler-merchant-httpd_post-orders-ID-pay.c | 4 | ||||
-rw-r--r-- | src/backend/taler-merchant-httpd_post-tips-ID-pickup.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/taler-merchant-httpd_post-orders-ID-pay.c b/src/backend/taler-merchant-httpd_post-orders-ID-pay.c index 3f69cfaa..5ee70de9 100644 --- a/src/backend/taler-merchant-httpd_post-orders-ID-pay.c +++ b/src/backend/taler-merchant-httpd_post-orders-ID-pay.c @@ -1148,8 +1148,8 @@ process_pay_with_exchange (void *cls, return; } - dc->deposit_fee = denom_details->fee_deposit; - dc->refund_fee = denom_details->fee_refund; + dc->deposit_fee = denom_details->fees.deposit; + dc->refund_fee = denom_details->fees.refund; dc->wire_fee = *wire_fee; GNUNET_assert (NULL != pc->wm); TMH_db->preflight (TMH_db->cls); diff --git a/src/backend/taler-merchant-httpd_post-tips-ID-pickup.c b/src/backend/taler-merchant-httpd_post-tips-ID-pickup.c index 73916758..7d3f7806 100644 --- a/src/backend/taler-merchant-httpd_post-tips-ID-pickup.c +++ b/src/backend/taler-merchant-httpd_post-tips-ID-pickup.c @@ -716,8 +716,8 @@ TMH_post_tips_ID_pickup (const struct TMH_RequestHandler *rh, GNUNET_CRYPTO_hash_context_read (hc, &pd->denom_pub_hash, sizeof (pd->denom_pub_hash)); - TALER_blinded_planchet_hash (&pd->blinded_planchet, - hc); + TALER_blinded_planchet_hash_ (&pd->blinded_planchet, + hc); } GNUNET_CRYPTO_hash_context_finish (hc, &pc->pickup_id.hash); |