gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-anastasis] branch master updated: adapt to latest merchant API


From: gnunet
Subject: [taler-anastasis] branch master updated: adapt to latest merchant API
Date: Sat, 03 Jun 2023 23:23:21 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository anastasis.

The following commit(s) were added to refs/heads/master by this push:
     new d4ab34a  adapt to latest merchant API
d4ab34a is described below

commit d4ab34a799965efed34bbb442710ee46dd99a32c
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sat Jun 3 23:23:15 2023 +0200

    adapt to latest merchant API
---
 src/backend/anastasis-httpd_truth-challenge.c | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/src/backend/anastasis-httpd_truth-challenge.c 
b/src/backend/anastasis-httpd_truth-challenge.c
index c37d164..cda074c 100644
--- a/src/backend/anastasis-httpd_truth-challenge.c
+++ b/src/backend/anastasis-httpd_truth-challenge.c
@@ -360,22 +360,17 @@ AH_truth_challenge_shutdown (void)
  * Callback to process a POST /orders/ID/refund request
  *
  * @param cls closure with a `struct RefundEntry *`
- * @param hr HTTP response details
- * @param taler_refund_uri the refund uri offered to the wallet
- * @param h_contract hash of the contract a Browser may need to authorize
- *        obtaining the HTTP response.
+ * @param rr response details
  */
 static void
 refund_cb (
   void *cls,
-  const struct TALER_MERCHANT_HttpResponse *hr,
-  const char *taler_refund_uri,
-  const struct TALER_PrivateContractHashP *h_contract)
+  const struct TALER_MERCHANT_RefundResponse *rr)
 {
   struct RefundEntry *re = cls;
 
   re->ro = NULL;
-  switch (hr->http_status)
+  switch (rr->hr.http_status)
   {
   case MHD_HTTP_OK:
     {
@@ -407,9 +402,9 @@ refund_cb (
     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                 "Refund `%s' failed with HTTP status %u: %s (#%u)\n",
                 re->order_id,
-                hr->http_status,
-                hr->hint,
-                (unsigned int) hr->ec);
+                rr->hr.http_status,
+                rr->hr.hint,
+                (unsigned int) rr->hr.ec);
     break;
   }
   GNUNET_CONTAINER_DLL_remove (re_head,

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]