merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit 6bfe1eb75609fbcb6a8ef1b160d64140981c71e2
parent 9e2df4ccea8975257d151111000e1f89c071eac2
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 16 Jul 2020 20:52:45 +0200

API change, #6188

Diffstat:
Msrc/lib/merchant_api_delete_instance.c | 1-
Msrc/lib/merchant_api_delete_order.c | 1-
Msrc/lib/merchant_api_delete_product.c | 1-
Msrc/lib/merchant_api_delete_reserve.c | 1-
Msrc/lib/merchant_api_get_config.c | 1-
Msrc/lib/merchant_api_get_instance.c | 1-
Msrc/lib/merchant_api_get_instances.c | 1-
Msrc/lib/merchant_api_get_orders.c | 1-
Msrc/lib/merchant_api_get_product.c | 1-
Msrc/lib/merchant_api_get_products.c | 1-
Msrc/lib/merchant_api_get_reserve.c | 1-
Msrc/lib/merchant_api_get_reserves.c | 1-
Msrc/lib/merchant_api_get_tips.c | 1-
Msrc/lib/merchant_api_get_transfers.c | 1-
Msrc/lib/merchant_api_merchant_get_order.c | 1-
Msrc/lib/merchant_api_merchant_get_tip.c | 1-
Msrc/lib/merchant_api_wallet_get_order.c | 1-
Msrc/lib/merchant_api_wallet_get_tip.c | 1-
18 files changed, 0 insertions(+), 18 deletions(-)

diff --git 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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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;