summaryrefslogtreecommitdiff
path: root/src/lib/testing_api_cmd_pay.c
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-26 20:26:41 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-26 20:26:41 +0200
commit8da3379c0a4ec94aa0a6d665307ef0191dee16ec (patch)
tree2569e9089131f864b8b98f3a2bea381aeca06209 /src/lib/testing_api_cmd_pay.c
parent15518f077f9955d04de58c8041370372a7d0475b (diff)
downloadmerchant-8da3379c0a4ec94aa0a6d665307ef0191dee16ec.tar.gz
merchant-8da3379c0a4ec94aa0a6d665307ef0191dee16ec.tar.bz2
merchant-8da3379c0a4ec94aa0a6d665307ef0191dee16ec.zip
generate taler_pay_uri in favor of the trigger-pay mechanism
Diffstat (limited to 'src/lib/testing_api_cmd_pay.c')
-rw-r--r--src/lib/testing_api_cmd_pay.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/testing_api_cmd_pay.c b/src/lib/testing_api_cmd_pay.c
index a9947a50..aafcf253 100644
--- a/src/lib/testing_api_cmd_pay.c
+++ b/src/lib/testing_api_cmd_pay.c
@@ -316,8 +316,8 @@ check_payment_cleanup (void *cls,
* refunded (not refunded).
* @param refund_amount the amount that was refunded to this
* contract.
- * @param fallback_request_payment_url URL where the payment has to be
- * addressed.
+ * @param taler_pay_uri the URI that instructs the wallets to process
+ * the payment
*/
static void
check_payment_cb (void *cls,
@@ -326,7 +326,7 @@ check_payment_cb (void *cls,
int paid,
int refunded,
struct TALER_Amount *refund_amount,
- const char *fallback_request_payment_url)
+ const char *taler_pay_uri)
{
struct CheckPaymentState *cps = cls;
@@ -341,7 +341,7 @@ check_payment_cb (void *cls,
paid);
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"check payment: url: %s\n",
- fallback_request_payment_url);
+ taler_pay_uri);
if (paid != cps->expect_paid)
TALER_TESTING_FAIL (cps->is);