merchant

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

commit 81c66331ce84f001ae064d9827bd40e6e65fd9c5
parent 1ec3eecef1318dd9c7b21c2d1a5b61dc6ae8e708
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 17 Feb 2022 17:21:09 +0100

-fix FTBFS

Diffstat:
Msrc/backend/taler-merchant-httpd_post-orders-ID-pay.c | 4++--
Msrc/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 @@ -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 @@ -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);