diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-08-26 23:55:48 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-08-26 23:55:48 +0200 |
commit | 62de3f174c61ade17c132846121e628345876153 (patch) | |
tree | f60828f02078be82747715128ddae07638329814 /src/lib | |
parent | fe11d8a775ba848363a4e2b1ab41b3558aa1e755 (diff) |
get rid of session_sig, as it is complex and does not work with mobile payments
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/merchant_api_check_payment.c | 4 | ||||
-rw-r--r-- | src/lib/testing_api_cmd_pay.c | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/src/lib/merchant_api_check_payment.c b/src/lib/merchant_api_check_payment.c index 87a74ea6..213f1ba5 100644 --- a/src/lib/merchant_api_check_payment.c +++ b/src/lib/merchant_api_check_payment.c @@ -178,8 +178,6 @@ handle_check_payment_finished (void *cls, * @param order_id order id to identify the payment * @parem resource_url resource URL to identify duplicate payments (can be NULL) * @parem session_id sesion id for the payment (or NULL if the payment is not bound to a session) - * @parem session_id sesion signature for the payment (or NULL if the payment - * is not bound to a session or the session is not signed yet) * @param check_payment_cb callback which will work the response gotten from the backend * @param check_payment_cb_cls closure to pass to @a check_payment_cb * @return handle for this operation, NULL upon errors @@ -191,7 +189,6 @@ TALER_MERCHANT_check_payment (struct GNUNET_CURL_Context *ctx, const char *order_id, const char *resource_url, const char *session_id, - const char *session_sig, TALER_MERCHANT_CheckPaymentCallback check_payment_cb, void *check_payment_cb_cls) { @@ -211,7 +208,6 @@ TALER_MERCHANT_check_payment (struct GNUNET_CURL_Context *ctx, "order_id", order_id, "resource_url", resource_url, "session_id", session_id, - "session_sig", session_sig, NULL); eh = curl_easy_init (); if (CURLE_OK != curl_easy_setopt (eh, diff --git a/src/lib/testing_api_cmd_pay.c b/src/lib/testing_api_cmd_pay.c index aafcf253..252fc813 100644 --- a/src/lib/testing_api_cmd_pay.c +++ b/src/lib/testing_api_cmd_pay.c @@ -390,7 +390,6 @@ check_payment_run (void *cls, order_id, NULL, NULL, - NULL, check_payment_cb, cps); |