summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_post-orders-ID-abort.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-05-05 22:17:07 +0200
committerChristian Grothoff <christian@grothoff.org>2020-05-05 22:17:07 +0200
commit2ba0fedd391988610d6d18d9e5b61ac00c9f663e (patch)
tree729d790f924cdd9ab2aa66a72aab6a350a9eacd6 /src/backend/taler-merchant-httpd_post-orders-ID-abort.c
parent68fcf5f245b9beccf157f95f06984508df95730a (diff)
downloadmerchant-2ba0fedd391988610d6d18d9e5b61ac00c9f663e.tar.gz
merchant-2ba0fedd391988610d6d18d9e5b61ac00c9f663e.tar.bz2
merchant-2ba0fedd391988610d6d18d9e5b61ac00c9f663e.zip
updates
Diffstat (limited to 'src/backend/taler-merchant-httpd_post-orders-ID-abort.c')
-rw-r--r--src/backend/taler-merchant-httpd_post-orders-ID-abort.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/backend/taler-merchant-httpd_post-orders-ID-abort.c b/src/backend/taler-merchant-httpd_post-orders-ID-abort.c
index 4c7960ef..564f0e3c 100644
--- a/src/backend/taler-merchant-httpd_post-orders-ID-abort.c
+++ b/src/backend/taler-merchant-httpd_post-orders-ID-abort.c
@@ -438,12 +438,14 @@ find_next_exchange (struct AbortContext *ac);
*
* @param cls closure
* @param hr HTTP response data
+ * @param refund_fee fee the exchange charged
* @param sign_key exchange key used to sign @a obj, or NULL
* @param signature the actual signature, or NULL on error
*/
static void
refund_cb (void *cls,
const struct TALER_EXCHANGE_HttpResponse *hr,
+ const struct TALER_Amount *refund_fee,
const struct TALER_ExchangePublicKeyP *sign_key,
const struct TALER_ExchangeSignatureP *signature)
{
@@ -452,6 +454,7 @@ refund_cb (void *cls,
(void) sign_key;
(void) signature;
+ (void) refund_fee;
rd->rh = NULL;
rd->http_status = hr->http_status;
rd->exchange_reply = json_incref ((json_t*) hr->reply);