commit d0768f76c8b21757e118535b313c9190a8b2a77c
parent 1521049ba4dcc394ef3bc21d88805766308c6bdf
Author: Dominik Hofer <dominik.hofer@bfh.ch>
Date: Fri, 6 Dec 2019 10:39:59 +0100
disableautorefund
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main.c b/src/main.c
@@ -1239,9 +1239,9 @@ launch_payment (const struct Product *product)
orderReq = json_pack ("{ s:s, s:o, s:s, s:o }",
"summary", product->description,
"amount", TALER_JSON_from_amount (&product->price),
- "fulfillment_url", fulflmntUrl,
- "auto_refund", GNUNET_JSON_from_time_rel (
- MAX_REFUND_DELAY));
+ "fulfillment_url", fulflmntUrl
+ // ,"auto_refund", GNUNET_JSON_from_time_rel (MAX_REFUND_DELAY)
+ );
GNUNET_free (fulflmntUrl);
if (NULL == orderReq)
{