summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_post-orders-ID-abort.c
diff options
context:
space:
mode:
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.c8
1 files changed, 6 insertions, 2 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 564f0e3c..19f7223e 100644
--- a/src/backend/taler-merchant-httpd_post-orders-ID-abort.c
+++ b/src/backend/taler-merchant-httpd_post-orders-ID-abort.c
@@ -469,21 +469,25 @@ refund_cb (void *cls,
*
* @param cls the `struct AbortContext`
* @param hr HTTP response details
+ * @param payto_uri payto://-URI of the exchange
* @param exchange_handle NULL if exchange was not found to be acceptable
* @param wire_fee current applicable fee for dealing with @a exchange_handle,
* NULL if not available
- * @param exchange_trusted #GNUNET_YES if this exchange is
+ * @param exchange_trusted true if this exchange is
* trusted by config
*/
static void
process_abort_with_exchange (void *cls,
const struct TALER_EXCHANGE_HttpResponse *hr,
struct TALER_EXCHANGE_Handle *exchange_handle,
+ const char *payto_uri,
const struct TALER_Amount *wire_fee,
- int exchange_trusted)
+ bool exchange_trusted)
{
struct AbortContext *ac = cls;
+ (void) payto_uri;
+ (void) exchange_trusted;
ac->fo = NULL;
GNUNET_assert (GNUNET_YES == ac->suspended);
if (MHD_HTTP_OK != hr->http_status)