diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-10-25 22:00:53 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-10-25 22:00:53 +0100 |
commit | 60f118f535ba3f6ce9ec5e91d422913f5f7aee4c (patch) | |
tree | 5d2d0517d93202d9cfdfe1e85bfac023655a1a0c | |
parent | 0e63f90cfb3fbc4271a3a82f988e61d8697c8cb6 (diff) |
increase timeout, 5s is too short
-rw-r--r-- | src/backend/taler-merchant-httpd_post-orders-ID-pay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/taler-merchant-httpd_post-orders-ID-pay.c b/src/backend/taler-merchant-httpd_post-orders-ID-pay.c index c5fbd05a..0e033a7f 100644 --- a/src/backend/taler-merchant-httpd_post-orders-ID-pay.c +++ b/src/backend/taler-merchant-httpd_post-orders-ID-pay.c @@ -377,7 +377,7 @@ get_pay_timeout (unsigned int num_coins) struct GNUNET_TIME_Relative sec5; sec5 = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, - 5); + 10); t = GNUNET_TIME_relative_multiply (sec5, 1 + (num_coins / 20)); |