diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-07-03 17:03:07 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-07-03 17:03:07 +0200 |
commit | 474ea4a802d7c7f944c9ce93fa4e916b48c1e6c5 (patch) | |
tree | 65afe4b7ef3a1ee4016eba1c09af1009f8ebf99f /src/include | |
parent | 537a490ff91cda40997886dc38c457e3c43900bc (diff) |
-fix merchant FTBFS
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_merchant_service.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/include/taler_merchant_service.h b/src/include/taler_merchant_service.h index 3d64833f..874a8a8c 100644 --- a/src/include/taler_merchant_service.h +++ b/src/include/taler_merchant_service.h @@ -4617,7 +4617,7 @@ struct TALER_MERCHANT_PlanchetData * backend that a customer wants to pick up a tip. * * @param ctx execution context - * @param exchange handle to the exchange we are picking up the tip from + * @param exchange_url base URL of the exchange * @param backend_url base URL of the merchant backend * @param tip_id unique identifier for the tip * @param num_planchets number of planchets provided in @a pds @@ -4627,14 +4627,15 @@ struct TALER_MERCHANT_PlanchetData * @return handle for this operation, NULL upon errors */ struct TALER_MERCHANT_TipPickupHandle * -TALER_MERCHANT_tip_pickup (struct GNUNET_CURL_Context *ctx, - struct TALER_EXCHANGE_Handle *exchange, - const char *backend_url, - const struct TALER_TipIdentifierP *tip_id, - unsigned int num_planchets, - const struct TALER_MERCHANT_PlanchetData planchets[], - TALER_MERCHANT_TipPickupCallback pickup_cb, - void *pickup_cb_cls); +TALER_MERCHANT_tip_pickup ( + struct GNUNET_CURL_Context *ctx, + const char *exchange_url, + const char *backend_url, + const struct TALER_TipIdentifierP *tip_id, + unsigned int num_planchets, + const struct TALER_MERCHANT_PlanchetData planchets[], + TALER_MERCHANT_TipPickupCallback pickup_cb, + void *pickup_cb_cls); /** |