merchant

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

commit 2ae55e5e7ff366ed1e4602710663a25f2f85420f
parent ef0ccea3ca567eb45b6c41359d5f86dc01ff7395
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue,  9 Mar 2021 22:55:35 +0100

disable confusing warning

Diffstat:
Msrc/backend/taler-merchant-httpd_exchanges.c | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/backend/taler-merchant-httpd_exchanges.c b/src/backend/taler-merchant-httpd_exchanges.c @@ -564,9 +564,11 @@ process_find_operations (struct Exchange *exchange) if (NULL == fbw) { need_wire = true; - GNUNET_log (GNUNET_ERROR_TYPE_WARNING, - "Exchange does not support `%s' wire method (will retry later)\n", - fo->wire_method); + /* Do not warn if this is before our first attempt */ + if (0 != exchange->wire_retry_delay.rel_value_us) + GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + "Exchange does not support `%s' wire method (will retry later)\n", + fo->wire_method); fbw = NULL; continue; }