diff options
Diffstat (limited to 'src/backend/taler-merchant-httpd_tip-reserve-helper.c')
-rw-r--r-- | src/backend/taler-merchant-httpd_tip-reserve-helper.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/backend/taler-merchant-httpd_tip-reserve-helper.c b/src/backend/taler-merchant-httpd_tip-reserve-helper.c index 33ec5340..e104e089 100644 --- a/src/backend/taler-merchant-httpd_tip-reserve-helper.c +++ b/src/backend/taler-merchant-httpd_tip-reserve-helper.c @@ -331,22 +331,17 @@ handle_status (void *cls, * the exchange about the status of the tipping reserve. * * @param cls closure with a `struct TMH_CheckTipReserve *` + * @param hr HTTP response details * @param eh handle to the exchange context * @param wire_fee current applicable wire fee for dealing with @a eh, NULL if not available * @param exchange_trusted #GNUNET_YES if this exchange is trusted by config - * @param ec error code, #TALER_EC_NONE on success - * @param http_status the HTTP status we got from the exchange - * @param error_reply the full reply from the exchange, NULL if - * the response was NOT in JSON or on success */ static void exchange_cont (void *cls, + const struct TALER_EXCHANGE_HttpResponse *hr, struct TALER_EXCHANGE_Handle *eh, const struct TALER_Amount *wire_fee, - int exchange_trusted, - enum TALER_ErrorCode ec, - unsigned int http_status, - const json_t *error_reply) + int exchange_trusted) { struct TMH_CheckTipReserve *ctr = cls; struct TALER_ReservePublicKeyP reserve_pub; |