gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] 110/152: modify TALER_EXCHANGE_deposits_get() API to co


From: gnunet
Subject: [taler-exchange] 110/152: modify TALER_EXCHANGE_deposits_get() API to combine returned arguments into a struct (simplifies merchant later)
Date: Sun, 05 Jul 2020 20:47:46 +0200

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

grothoff pushed a commit to branch master
in repository exchange.

commit cdbf3a05ae3c92122b8ec15073c6fadfa0793315
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun May 3 20:07:49 2020 +0200

    modify TALER_EXCHANGE_deposits_get() API to combine returned arguments into 
a struct (simplifies merchant later)
---
 src/include/taler_exchange_service.h       |  4 ----
 src/testing/testing_api_cmd_deposits_get.c | 11 ++++++++++-
 2 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/src/include/taler_exchange_service.h 
b/src/include/taler_exchange_service.h
index 2fb15db1..ea185f09 100644
--- a/src/include/taler_exchange_service.h
+++ b/src/include/taler_exchange_service.h
@@ -1611,11 +1611,7 @@ struct TALER_EXCHANGE_TransferData
   struct GNUNET_TIME_Absolute execution_time;
 
   /**
-<<<<<<< HEAD
-   * amount of the wire transfer; FIXME: total wired (without fee), or 
including @a wire_fee?
-=======
    * amount of the wire transfer
->>>>>>> update exchange API to return struct instead of lots of individual 
args for TALER_EXCHANGE_transfers_get() -- simplifies merchant later
    */
   struct TALER_Amount total_amount;
 
diff --git a/src/testing/testing_api_cmd_deposits_get.c 
b/src/testing/testing_api_cmd_deposits_get.c
index 33987e16..700b0edf 100644
--- a/src/testing/testing_api_cmd_deposits_get.c
+++ b/src/testing/testing_api_cmd_deposits_get.c
@@ -111,7 +111,14 @@ deposit_wtid_cb (void *cls,
   switch (hr->http_status)
   {
   case MHD_HTTP_OK:
-    tts->wtid = dd->wtid;
+      << << << < HEAD
+      tts->wtid = dd->wtid;
+    ====== =
+      GNUNET_assert (NULL != dd->wtid);
+    tts->wtid = *dd->wtid;
+    >> >> >> > modify
+    TALER_EXCHANGE_deposits_get () API to combine returned arguments into
+    a struct (simplifies merchant later)
     if (NULL != tts->bank_transfer_reference)
     {
       const struct TALER_TESTING_Command *bank_transfer_cmd;
@@ -147,6 +154,8 @@ deposit_wtid_cb (void *cls,
         return;
       }
     }
+
+
     break;
   case MHD_HTTP_ACCEPTED:
     /* allowed, nothing to check here */

-- 
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]