From 26085c8712c509d1384d1de99fec1bc9d3d15386 Mon Sep 17 00:00:00 2001 From: Jonathan Buchanan Date: Wed, 29 Jul 2020 18:23:51 -0400 Subject: remove allocations and pointers from claim token client/test code --- src/include/taler_merchant_service.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include') diff --git a/src/include/taler_merchant_service.h b/src/include/taler_merchant_service.h index 783520c1..f706ada9 100644 --- a/src/include/taler_merchant_service.h +++ b/src/include/taler_merchant_service.h @@ -1114,7 +1114,7 @@ struct TALER_MERCHANT_PostOrdersOperation; * @param cls closure * @param hr HTTP response details * @param order_id order id of the newly created order - * @param token the claim token generated by the merchant (NULL if + * @param token the claim token generated by the merchant (zeroed if * it wasn't generated). */ typedef void @@ -1122,7 +1122,7 @@ typedef void void *cls, const struct TALER_MERCHANT_HttpResponse *hr, const char *order_id, - const struct TALER_ClaimTokenP *token); + struct TALER_ClaimTokenP token); /** @@ -1824,7 +1824,7 @@ TALER_MERCHANT_order_claim (struct GNUNET_CURL_Context *ctx, const char *backend_url, const char *order_id, const struct GNUNET_CRYPTO_EddsaPublicKey *nonce, - const struct TALER_ClaimTokenP *claim_token, + const struct TALER_ClaimTokenP claim_token, TALER_MERCHANT_OrderClaimCallback cb, void *cb_cls); -- cgit v1.2.3