summaryrefslogtreecommitdiff
path: root/src/include/taler_exchange_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-06-22 20:42:10 +0200
committerChristian Grothoff <christian@grothoff.org>2023-06-22 20:42:10 +0200
commit999dae7c5d0c37473e486fa38816a3f35c42dba9 (patch)
tree2b7241a9e9c13a32fa9ed4695521a9cedcebb1db /src/include/taler_exchange_service.h
parentd4a65faad4144e54633bf627ed7cf7bb64283924 (diff)
downloadexchange-999dae7c5d0c37473e486fa38816a3f35c42dba9.tar.gz
exchange-999dae7c5d0c37473e486fa38816a3f35c42dba9.tar.bz2
exchange-999dae7c5d0c37473e486fa38816a3f35c42dba9.zip
-more exchange API atomization
Diffstat (limited to 'src/include/taler_exchange_service.h')
-rw-r--r--src/include/taler_exchange_service.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h
index 9460fdbde..32617ba0f 100644
--- a/src/include/taler_exchange_service.h
+++ b/src/include/taler_exchange_service.h
@@ -6081,7 +6081,8 @@ struct TALER_EXCHANGE_PurseDeleteHandle;
* Asks the exchange to delete a purse. Will only succeed if
* the purse was not yet merged and did not yet time out.
*
- * @param exchange the exchange to interact with
+ * @param ctx CURL context
+ * @param url exchange base URL
* @param purse_priv private key of the purse
* @param cb function to call with the exchange's result
* @param cb_cls closure for @a cb
@@ -6089,7 +6090,8 @@ struct TALER_EXCHANGE_PurseDeleteHandle;
*/
struct TALER_EXCHANGE_PurseDeleteHandle *
TALER_EXCHANGE_purse_delete (
- struct TALER_EXCHANGE_Handle *exchange,
+ struct GNUNET_CURL_Context *ctx,
+ const char *url,
const struct TALER_PurseContractPrivateKeyP *purse_priv,
TALER_EXCHANGE_PurseDeleteCallback cb,
void *cb_cls);