gnunet-svn
[Top][All Lists]
Advanced

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

[taler-merchant] branch master updated: API change, #6188


From: gnunet
Subject: [taler-merchant] branch master updated: API change, #6188
Date: Thu, 16 Jul 2020 20:52:49 +0200

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

grothoff pushed a commit to branch master
in repository merchant.

The following commit(s) were added to refs/heads/master by this push:
     new 6bfe1eb  API change, #6188
6bfe1eb is described below

commit 6bfe1eb75609fbcb6a8ef1b160d64140981c71e2
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Thu Jul 16 20:52:45 2020 +0200

    API change, #6188
---
 src/lib/merchant_api_delete_instance.c    | 1 -
 src/lib/merchant_api_delete_order.c       | 1 -
 src/lib/merchant_api_delete_product.c     | 1 -
 src/lib/merchant_api_delete_reserve.c     | 1 -
 src/lib/merchant_api_get_config.c         | 1 -
 src/lib/merchant_api_get_instance.c       | 1 -
 src/lib/merchant_api_get_instances.c      | 1 -
 src/lib/merchant_api_get_orders.c         | 1 -
 src/lib/merchant_api_get_product.c        | 1 -
 src/lib/merchant_api_get_products.c       | 1 -
 src/lib/merchant_api_get_reserve.c        | 1 -
 src/lib/merchant_api_get_reserves.c       | 1 -
 src/lib/merchant_api_get_tips.c           | 1 -
 src/lib/merchant_api_get_transfers.c      | 1 -
 src/lib/merchant_api_merchant_get_order.c | 1 -
 src/lib/merchant_api_merchant_get_tip.c   | 1 -
 src/lib/merchant_api_wallet_get_order.c   | 1 -
 src/lib/merchant_api_wallet_get_tip.c     | 1 -
 18 files changed, 18 deletions(-)

diff --git a/src/lib/merchant_api_delete_instance.c 
b/src/lib/merchant_api_delete_instance.c
index edf73f8..6ee5788 100644
--- a/src/lib/merchant_api_delete_instance.c
+++ b/src/lib/merchant_api_delete_instance.c
@@ -177,7 +177,6 @@ instance_delete (struct GNUNET_CURL_Context *ctx,
                                      MHD_HTTP_METHOD_DELETE));
     idh->job = GNUNET_CURL_job_add (ctx,
                                     eh,
-                                    GNUNET_YES,
                                     &handle_delete_instance_finished,
                                     idh);
   }
diff --git a/src/lib/merchant_api_delete_order.c 
b/src/lib/merchant_api_delete_order.c
index 4b08e8c..028697b 100644
--- a/src/lib/merchant_api_delete_order.c
+++ b/src/lib/merchant_api_delete_order.c
@@ -164,7 +164,6 @@ TALER_MERCHANT_order_delete (
                                      MHD_HTTP_METHOD_DELETE));
     odh->job = GNUNET_CURL_job_add (ctx,
                                     eh,
-                                    GNUNET_YES,
                                     &handle_delete_order_finished,
                                     odh);
   }
diff --git a/src/lib/merchant_api_delete_product.c 
b/src/lib/merchant_api_delete_product.c
index 88607b4..3cfabdf 100644
--- a/src/lib/merchant_api_delete_product.c
+++ b/src/lib/merchant_api_delete_product.c
@@ -175,7 +175,6 @@ TALER_MERCHANT_product_delete (
                                      MHD_HTTP_METHOD_DELETE));
     pdh->job = GNUNET_CURL_job_add (ctx,
                                     eh,
-                                    GNUNET_YES,
                                     &handle_delete_product_finished,
                                     pdh);
   }
diff --git a/src/lib/merchant_api_delete_reserve.c 
b/src/lib/merchant_api_delete_reserve.c
index e765201..098b743 100644
--- a/src/lib/merchant_api_delete_reserve.c
+++ b/src/lib/merchant_api_delete_reserve.c
@@ -183,7 +183,6 @@ reserve_delete (struct GNUNET_CURL_Context *ctx,
                                      MHD_HTTP_METHOD_DELETE));
     rdh->job = GNUNET_CURL_job_add (ctx,
                                     eh,
-                                    GNUNET_YES,
                                     &handle_delete_reserve_finished,
                                     rdh);
   }
diff --git a/src/lib/merchant_api_get_config.c 
b/src/lib/merchant_api_get_config.c
index 8a2d88b..722d1f0 100644
--- a/src/lib/merchant_api_get_config.c
+++ b/src/lib/merchant_api_get_config.c
@@ -225,7 +225,6 @@ TALER_MERCHANT_config_get (struct GNUNET_CURL_Context *ctx,
 
   vgh->job = GNUNET_CURL_job_add (ctx,
                                   eh,
-                                  GNUNET_YES,
                                   &handle_config_finished,
                                   vgh);
   return vgh;
diff --git a/src/lib/merchant_api_get_instance.c 
b/src/lib/merchant_api_get_instance.c
index af93b53..ccd7bd8 100644
--- a/src/lib/merchant_api_get_instance.c
+++ b/src/lib/merchant_api_get_instance.c
@@ -269,7 +269,6 @@ TALER_MERCHANT_instance_get (struct GNUNET_CURL_Context 
*ctx,
                                    igh->url));
   igh->job = GNUNET_CURL_job_add (ctx,
                                   eh,
-                                  GNUNET_YES,
                                   &handle_get_instance_finished,
                                   igh);
   return igh;
diff --git a/src/lib/merchant_api_get_instances.c 
b/src/lib/merchant_api_get_instances.c
index 604267c..a1930fd 100644
--- a/src/lib/merchant_api_get_instances.c
+++ b/src/lib/merchant_api_get_instances.c
@@ -268,7 +268,6 @@ TALER_MERCHANT_instances_get (struct GNUNET_CURL_Context 
*ctx,
                                    igh->url));
   igh->job = GNUNET_CURL_job_add (ctx,
                                   eh,
-                                  GNUNET_YES,
                                   &handle_instances_finished,
                                   igh);
   return igh;
diff --git a/src/lib/merchant_api_get_orders.c 
b/src/lib/merchant_api_get_orders.c
index 2f18a6a..959493f 100644
--- a/src/lib/merchant_api_get_orders.c
+++ b/src/lib/merchant_api_get_orders.c
@@ -362,7 +362,6 @@ TALER_MERCHANT_orders_get2 (
                                    ogh->url));
   ogh->job = GNUNET_CURL_job_add (ctx,
                                   eh,
-                                  GNUNET_YES,
                                   &handle_get_orders_finished,
                                   ogh);
   return ogh;
diff --git a/src/lib/merchant_api_get_product.c 
b/src/lib/merchant_api_get_product.c
index bc83c86..9c2fa9e 100644
--- a/src/lib/merchant_api_get_product.c
+++ b/src/lib/merchant_api_get_product.c
@@ -254,7 +254,6 @@ TALER_MERCHANT_product_get (
                                    pgh->url));
   pgh->job = GNUNET_CURL_job_add (ctx,
                                   eh,
-                                  GNUNET_YES,
                                   &handle_get_product_finished,
                                   pgh);
   return pgh;
diff --git a/src/lib/merchant_api_get_products.c 
b/src/lib/merchant_api_get_products.c
index c3edbde..ba9ef88 100644
--- a/src/lib/merchant_api_get_products.c
+++ b/src/lib/merchant_api_get_products.c
@@ -241,7 +241,6 @@ TALER_MERCHANT_products_get (
                                    pgh->url));
   pgh->job = GNUNET_CURL_job_add (ctx,
                                   eh,
-                                  GNUNET_YES,
                                   &handle_get_products_finished,
                                   pgh);
   return pgh;
diff --git a/src/lib/merchant_api_get_reserve.c 
b/src/lib/merchant_api_get_reserve.c
index a30b455..994921a 100644
--- a/src/lib/merchant_api_get_reserve.c
+++ b/src/lib/merchant_api_get_reserve.c
@@ -288,7 +288,6 @@ TALER_MERCHANT_reserve_get (struct GNUNET_CURL_Context *ctx,
                                    rgh->url));
   rgh->job = GNUNET_CURL_job_add (ctx,
                                   eh,
-                                  GNUNET_YES,
                                   &handle_reserve_get_finished,
                                   rgh);
   return rgh;
diff --git a/src/lib/merchant_api_get_reserves.c 
b/src/lib/merchant_api_get_reserves.c
index 428bc81..43ebc6f 100644
--- a/src/lib/merchant_api_get_reserves.c
+++ b/src/lib/merchant_api_get_reserves.c
@@ -271,7 +271,6 @@ TALER_MERCHANT_reserves_get (struct GNUNET_CURL_Context 
*ctx,
                                    rgh->url));
   rgh->job = GNUNET_CURL_job_add (ctx,
                                   eh,
-                                  GNUNET_YES,
                                   &handle_reserves_get_finished,
                                   rgh);
   return rgh;
diff --git a/src/lib/merchant_api_get_tips.c b/src/lib/merchant_api_get_tips.c
index ee0ad1b..1936818 100644
--- a/src/lib/merchant_api_get_tips.c
+++ b/src/lib/merchant_api_get_tips.c
@@ -309,7 +309,6 @@ TALER_MERCHANT_tips_get2 (struct GNUNET_CURL_Context *ctx,
                                    tgh->url));
   tgh->job = GNUNET_CURL_job_add (ctx,
                                   eh,
-                                  GNUNET_YES,
                                   &handle_get_tips_finished,
                                   tgh);
   return tgh;
diff --git a/src/lib/merchant_api_get_transfers.c 
b/src/lib/merchant_api_get_transfers.c
index 859d97b..34d043f 100644
--- a/src/lib/merchant_api_get_transfers.c
+++ b/src/lib/merchant_api_get_transfers.c
@@ -321,7 +321,6 @@ TALER_MERCHANT_transfers_get (
                                    gth->url));
   gth->job = GNUNET_CURL_job_add (ctx,
                                   eh,
-                                  GNUNET_YES,
                                   &handle_transfers_get_finished,
                                   gth);
   return gth;
diff --git a/src/lib/merchant_api_merchant_get_order.c 
b/src/lib/merchant_api_merchant_get_order.c
index b29823f..25cce30 100644
--- a/src/lib/merchant_api_merchant_get_order.c
+++ b/src/lib/merchant_api_merchant_get_order.c
@@ -479,7 +479,6 @@ TALER_MERCHANT_merchant_order_get (struct 
GNUNET_CURL_Context *ctx,
     if (NULL == (omgh->job =
                    GNUNET_CURL_job_add (ctx,
                                         eh,
-                                        GNUNET_YES,
                                         &handle_merchant_order_get_finished,
                                         omgh)))
     {
diff --git a/src/lib/merchant_api_merchant_get_tip.c 
b/src/lib/merchant_api_merchant_get_tip.c
index e1f0f23..fce45ef 100644
--- a/src/lib/merchant_api_merchant_get_tip.c
+++ b/src/lib/merchant_api_merchant_get_tip.c
@@ -310,7 +310,6 @@ TALER_MERCHANT_merchant_tip_get (struct GNUNET_CURL_Context 
*ctx,
                                    tgh->url));
   tgh->job = GNUNET_CURL_job_add (ctx,
                                   eh,
-                                  GNUNET_YES,
                                   &handle_merchant_tip_get_finished,
                                   tgh);
   return tgh;
diff --git a/src/lib/merchant_api_wallet_get_order.c 
b/src/lib/merchant_api_wallet_get_order.c
index 799e57f..b5468f6 100644
--- a/src/lib/merchant_api_wallet_get_order.c
+++ b/src/lib/merchant_api_wallet_get_order.c
@@ -474,7 +474,6 @@ TALER_MERCHANT_wallet_order_get (struct GNUNET_CURL_Context 
*ctx,
     if (NULL == (owgh->job =
                    GNUNET_CURL_job_add (ctx,
                                         eh,
-                                        GNUNET_YES,
                                         &handle_wallet_get_order_finished,
                                         owgh)))
     {
diff --git a/src/lib/merchant_api_wallet_get_tip.c 
b/src/lib/merchant_api_wallet_get_tip.c
index d50b961..6697473 100644
--- a/src/lib/merchant_api_wallet_get_tip.c
+++ b/src/lib/merchant_api_wallet_get_tip.c
@@ -219,7 +219,6 @@ TALER_MERCHANT_wallet_tip_get (struct GNUNET_CURL_Context 
*ctx,
 
   tgh->job = GNUNET_CURL_job_add (ctx,
                                   eh,
-                                  GNUNET_YES,
                                   &handle_wallet_tip_get_finished,
                                   tgh);
   return tgh;

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