gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-merchant] 02/02: pending webhook test ok


From: gnunet
Subject: [taler-merchant] 02/02: pending webhook test ok
Date: Mon, 06 Feb 2023 15:00:13 +0100

This is an automated email from the git hooks/post-receive script.

priscilla-huang pushed a commit to branch master
in repository merchant.

commit 632d3a3269e8fde53d6ad3824ba7c1f3cac49a7f
Author: priscilla <priscilla.huang@efrei.net>
AuthorDate: Mon Feb 6 08:59:50 2023 -0500

    pending webhook test ok
---
 src/backend/taler-merchant-httpd_helper.c |    6 +-
 src/backend/taler-merchant-webhook.c      |   63 +-
 src/testing/core                          |  Bin 0 -> 2304 bytes
 src/testing/log                           | 6994 +++++++++++++++++++++++++++++
 src/testing/logs                          | 2532 +++++++++++
 src/testing/test_merchant_api.c           |   12 +-
 src/testing/testing_api_cmd_testserver.c  |   49 +-
 src/testing/vgcore.16090                  |  Bin 0 -> 36970496 bytes
 8 files changed, 9607 insertions(+), 49 deletions(-)

diff --git a/src/backend/taler-merchant-httpd_helper.c 
b/src/backend/taler-merchant-httpd_helper.c
index 22d82a0d..149ff3c3 100644
--- a/src/backend/taler-merchant-httpd_helper.c
+++ b/src/backend/taler-merchant-httpd_helper.c
@@ -561,7 +561,8 @@ trigger_webhook_cb (void *cls,
       t->rv = GNUNET_DB_STATUS_HARD_ERROR;
       return;
     }
-    GNUNET_assert ('\0' == ((const char *) header)[header_size-1]);
+    /* Note: header is actually header_size+1 bytes long here, see 
mustach.c::memfile_close() */
+    GNUNET_assert ('\0' == ((const char *) header)[header_size]);
   }
   if (NULL != body_template)
   {
@@ -579,7 +580,8 @@ trigger_webhook_cb (void *cls,
       t->rv = GNUNET_DB_STATUS_HARD_ERROR;
       return;
     }
-    GNUNET_assert ('\0' == ((const char *) body)[body_size-1]);
+    /* Note: body is actually body_size+1 bytes long here, see 
mustach.c::memfile_close() */
+    GNUNET_assert ('\0' == ((const char *) body)[body_size]);
   }
   t->rv = TMH_db->insert_pending_webhook (TMH_db->cls,
                                           t->instance,
diff --git a/src/backend/taler-merchant-webhook.c 
b/src/backend/taler-merchant-webhook.c
index ed0e148d..d25965cc 100644
--- a/src/backend/taler-merchant-webhook.c
+++ b/src/backend/taler-merchant-webhook.c
@@ -158,7 +158,15 @@ handle_webhook_response (void *cls,
 
   (void) body;
   (void) body_size;
-
+  w->job = NULL;
+  GNUNET_CONTAINER_DLL_remove (w_head,
+                               w_tail,
+                               w);
+  GNUNET_free (w->body);
+  curl_slist_free_all (w->job_headers);
+  if (NULL == w_head)
+    task = GNUNET_SCHEDULER_add_now (&select_work,
+                                     NULL);
   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
               "Webhook %llu returned with status %ld\n",
               (unsigned long long) w->webhook_pending_serial,
@@ -169,10 +177,11 @@ handle_webhook_response (void *cls,
 
     qs = db_plugin->delete_pending_webhook (db_plugin->cls,
                                             w->webhook_pending_serial);
-
-    /* GNUNET_DB_STATUS_SOFT_ERROR seems impossible */
-    if ((GNUNET_DB_STATUS_HARD_ERROR == qs) 
||(GNUNET_DB_STATUS_SUCCESS_ONE_RESULT==qs))
+    GNUNET_free (w);
+    switch (qs)
       {
+      case GNUNET_DB_STATUS_HARD_ERROR:
+      case GNUNET_DB_STATUS_SOFT_ERROR:
         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                     "Failed!\n");
         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
@@ -180,9 +189,21 @@ handle_webhook_response (void *cls,
                   qs);
         global_ret = EXIT_FAILURE;
         GNUNET_SCHEDULER_shutdown ();
-      }
+        return;
+      case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
+        GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+                    "Delete returned: %d\n",
+                    qs);
+        return;
+      case GNUNET_DB_STATUS_SUCCESS_NO_RESULTS:
+        GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+                    "Delete returned: %d\n",
+                    qs);
+        return;
+        }
+    GNUNET_assert (0);
   }
-  else
+
   {
     struct GNUNET_TIME_Relative next_attempt;
     enum GNUNET_DB_QueryStatus qs;
@@ -204,10 +225,11 @@ handle_webhook_response (void *cls,
     qs = db_plugin->update_pending_webhook (db_plugin->cls,
                                             w->webhook_pending_serial,
                                             GNUNET_TIME_relative_to_absolute 
(next_attempt));
-
-    /* GNUNET_DB_STATUS_SOFT_ERROR seems impossible */
-    if ((GNUNET_DB_STATUS_HARD_ERROR == qs) 
||(GNUNET_DB_STATUS_SUCCESS_ONE_RESULT==qs))
+    GNUNET_free (w);
+    switch (qs)
       {
+      case GNUNET_DB_STATUS_HARD_ERROR:
+      case GNUNET_DB_STATUS_SOFT_ERROR:
         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                     "Failed!\n");
         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
@@ -216,17 +238,22 @@ handle_webhook_response (void *cls,
                   qs);
         global_ret = EXIT_FAILURE;
         GNUNET_SCHEDULER_shutdown ();
+        return;
+      case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
+        GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+                    "Next in %s Rval: %d\n",
+                    GNUNET_TIME_relative2s (next_attempt, true),
+                    qs);
+        return;
+      case GNUNET_DB_STATUS_SUCCESS_NO_RESULTS:
+        GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+                    "Next in %s Rval: %d\n",
+                    GNUNET_TIME_relative2s (next_attempt, true),
+                    qs);
+        return;
       }
+    GNUNET_assert (0);
   }
-  GNUNET_CONTAINER_DLL_remove (w_head,
-                               w_tail,
-                               w);
-  GNUNET_free (w->body);
-  curl_slist_free_all (w->job_headers);
-  GNUNET_free (w);
-  if (NULL == w_head)
-    task = GNUNET_SCHEDULER_add_now (&select_work,
-                                     NULL);
 }
 
 
diff --git a/src/testing/core b/src/testing/core
new file mode 100644
index 00000000..be35ca6b
Binary files /dev/null and b/src/testing/core differ
diff --git a/src/testing/log b/src/testing/log
new file mode 100644
index 00000000..7fff5926
--- /dev/null
+++ b/src/testing/log
@@ -0,0 +1,6994 @@
+==16942== Memcheck, a memory error detector
+==16942== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16942== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16942== Command: .libs/test_merchant_api_cs
+==16942== 
+2023-02-06T08:37:32.841150-0500 .libs/test_merchant_api_cs-16942 INFO Using 
fakebank http://localhost:8082/2/ on port 8082
+2023-02-06T08:37:32.936830-0500 .libs/test_merchant_api_cs-16942 INFO exchange 
payto: payto://x-taler-bank/localhost/2?receiver-name=2
+2023-02-06T08:37:32.938009-0500 .libs/test_merchant_api_cs-16942 INFO 
user42_payto: payto://x-taler-bank/localhost/42?receiver-name=42
+2023-02-06T08:37:32.938501-0500 .libs/test_merchant_api_cs-16942 INFO 
user43_payto: payto://x-taler-bank/localhost/43?receiver-name=43
+==16945== Memcheck, a memory error detector
+==16945== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16945== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16945== Command: /home/priscilla/install/bin/taler-merchant-dbinit -c 
test_merchant_api-cs.conf -r
+==16945== 
+==16947== Memcheck, a memory error detector
+==16947== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16947== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16947== Command: /usr/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/merchant/drop.sql -q --set 
ON_ERROR_STOP=1
+==16947== 
+==16950== Memcheck, a memory error detector
+==16950== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16950== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16950== Command: /usr/bin/ldd /usr/lib/postgresql/13/bin/psql
+==16950== 
+==16952== 
+==16952== HEAP SUMMARY:
+==16952==     in use at exit: 73,062 bytes in 1,219 blocks
+==16952==   total heap usage: 2,918 allocs, 1,699 frees, 143,902 bytes 
allocated
+==16952== 
+==16952== LEAK SUMMARY:
+==16952==    definitely lost: 0 bytes in 0 blocks
+==16952==    indirectly lost: 0 bytes in 0 blocks
+==16952==      possibly lost: 0 bytes in 0 blocks
+==16952==    still reachable: 73,062 bytes in 1,219 blocks
+==16952==         suppressed: 0 bytes in 0 blocks
+==16952== Rerun with --leak-check=full to see details of leaked memory
+==16952== 
+==16952== For lists of detected and suppressed errors, rerun with: -s
+==16952== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16954== Memcheck, a memory error detector
+==16954== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16954== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16954== Command: /lib64/ld-linux-x86-64.so.2 --verify 
/usr/lib/postgresql/13/bin/psql
+==16954== 
+==16954== 
+==16954== HEAP SUMMARY:
+==16954==     in use at exit: 0 bytes in 0 blocks
+==16954==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+==16954== 
+==16954== All heap blocks were freed -- no leaks are possible
+==16954== 
+==16954== For lists of detected and suppressed errors, rerun with: -s
+==16954== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16956== 
+==16956== HEAP SUMMARY:
+==16956==     in use at exit: 80,819 bytes in 1,401 blocks
+==16956==   total heap usage: 3,611 allocs, 2,210 frees, 192,542 bytes 
allocated
+==16956== 
+==16956== LEAK SUMMARY:
+==16956==    definitely lost: 0 bytes in 0 blocks
+==16956==    indirectly lost: 0 bytes in 0 blocks
+==16956==      possibly lost: 0 bytes in 0 blocks
+==16956==    still reachable: 80,819 bytes in 1,401 blocks
+==16956==         suppressed: 0 bytes in 0 blocks
+==16956== Rerun with --leak-check=full to see details of leaked memory
+==16956== 
+==16956== For lists of detected and suppressed errors, rerun with: -s
+==16956== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16955== 
+==16955== HEAP SUMMARY:
+==16955==     in use at exit: 77,682 bytes in 1,300 blocks
+==16955==   total heap usage: 3,266 allocs, 1,966 frees, 181,008 bytes 
allocated
+==16955== 
+==16955== LEAK SUMMARY:
+==16955==    definitely lost: 0 bytes in 0 blocks
+==16955==    indirectly lost: 0 bytes in 0 blocks
+==16955==      possibly lost: 0 bytes in 0 blocks
+==16955==    still reachable: 77,682 bytes in 1,300 blocks
+==16955==         suppressed: 0 bytes in 0 blocks
+==16955== Rerun with --leak-check=full to see details of leaked memory
+==16955== 
+==16955== For lists of detected and suppressed errors, rerun with: -s
+==16955== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16950== 
+==16950== HEAP SUMMARY:
+==16950==     in use at exit: 76,005 bytes in 1,015 blocks
+==16950==   total heap usage: 3,122 allocs, 2,107 frees, 167,015 bytes 
allocated
+==16950== 
+==16950== LEAK SUMMARY:
+==16950==    definitely lost: 0 bytes in 0 blocks
+==16950==    indirectly lost: 0 bytes in 0 blocks
+==16950==      possibly lost: 0 bytes in 0 blocks
+==16950==    still reachable: 76,005 bytes in 1,015 blocks
+==16950==         suppressed: 0 bytes in 0 blocks
+==16950== Rerun with --leak-check=full to see details of leaked memory
+==16950== 
+==16950== For lists of detected and suppressed errors, rerun with: -s
+==16950== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Use of uninitialized value $lib_path in concatenation (.) or string at 
/usr/bin/psql line 149.
+==16947== Memcheck, a memory error detector
+==16947== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16947== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16947== Command: /usr/lib/postgresql/13/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/merchant/drop.sql -q --set 
ON_ERROR_STOP=1
+==16947== 
+psql:/home/priscilla/install/share/taler/sql/merchant/drop.sql:33: NOTICE:  
drop cascades to 26 other objects
+DETAIL:  drop cascades to table merchant.merchant_exchange_wire_fees
+drop cascades to table merchant.merchant_exchange_signing_keys
+drop cascades to table merchant.merchant_instances
+drop cascades to table merchant.merchant_keys
+drop cascades to table merchant.merchant_accounts
+drop cascades to table merchant.merchant_inventory
+drop cascades to table merchant.merchant_inventory_locks
+drop cascades to table merchant.merchant_orders
+drop cascades to table merchant.merchant_order_locks
+drop cascades to table merchant.merchant_contract_terms
+drop cascades to table merchant.merchant_deposits
+drop cascades to table merchant.merchant_refunds
+drop cascades to table merchant.merchant_refund_proofs
+drop cascades to table merchant.merchant_transfers
+drop cascades to table merchant.merchant_transfer_signatures
+drop cascades to table merchant.merchant_transfer_to_coin
+drop cascades to table merchant.merchant_deposit_to_transfer
+drop cascades to table merchant.merchant_tip_reserves
+drop cascades to table merchant.merchant_tip_reserve_keys
+drop cascades to table merchant.merchant_tips
+drop cascades to table merchant.merchant_tip_pickups
+drop cascades to table merchant.merchant_tip_pickup_signatures
+drop cascades to table merchant.merchant_kyc
+drop cascades to table merchant.merchant_template
+drop cascades to table merchant.merchant_webhook
+drop cascades to table merchant.merchant_pending_webhooks
+==16947== 
+==16947== HEAP SUMMARY:
+==16947==     in use at exit: 2,652 bytes in 119 blocks
+==16947==   total heap usage: 1,870 allocs, 1,751 frees, 220,844 bytes 
allocated
+==16947== 
+==16947== LEAK SUMMARY:
+==16947==    definitely lost: 54 bytes in 2 blocks
+==16947==    indirectly lost: 59 bytes in 1 blocks
+==16947==      possibly lost: 0 bytes in 0 blocks
+==16947==    still reachable: 2,539 bytes in 116 blocks
+==16947==         suppressed: 0 bytes in 0 blocks
+==16947== Rerun with --leak-check=full to see details of leaked memory
+==16947== 
+==16947== For lists of detected and suppressed errors, rerun with: -s
+==16947== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16960== Memcheck, a memory error detector
+==16960== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16960== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16960== Command: /usr/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/merchant/merchant-0001.sql -q --set 
ON_ERROR_STOP=1
+==16960== 
+==16963== Memcheck, a memory error detector
+==16963== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16963== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16963== Command: /usr/bin/ldd /usr/lib/postgresql/13/bin/psql
+==16963== 
+==16965== 
+==16965== HEAP SUMMARY:
+==16965==     in use at exit: 73,062 bytes in 1,219 blocks
+==16965==   total heap usage: 2,918 allocs, 1,699 frees, 143,902 bytes 
allocated
+==16965== 
+==16965== LEAK SUMMARY:
+==16965==    definitely lost: 0 bytes in 0 blocks
+==16965==    indirectly lost: 0 bytes in 0 blocks
+==16965==      possibly lost: 0 bytes in 0 blocks
+==16965==    still reachable: 73,062 bytes in 1,219 blocks
+==16965==         suppressed: 0 bytes in 0 blocks
+==16965== Rerun with --leak-check=full to see details of leaked memory
+==16965== 
+==16965== For lists of detected and suppressed errors, rerun with: -s
+==16965== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16967== Memcheck, a memory error detector
+==16967== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16967== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16967== Command: /lib64/ld-linux-x86-64.so.2 --verify 
/usr/lib/postgresql/13/bin/psql
+==16967== 
+==16967== 
+==16967== HEAP SUMMARY:
+==16967==     in use at exit: 0 bytes in 0 blocks
+==16967==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+==16967== 
+==16967== All heap blocks were freed -- no leaks are possible
+==16967== 
+==16967== For lists of detected and suppressed errors, rerun with: -s
+==16967== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16979== 
+==16979== HEAP SUMMARY:
+==16979==     in use at exit: 80,819 bytes in 1,401 blocks
+==16979==   total heap usage: 3,611 allocs, 2,210 frees, 192,542 bytes 
allocated
+==16979== 
+==16979== LEAK SUMMARY:
+==16979==    definitely lost: 0 bytes in 0 blocks
+==16979==    indirectly lost: 0 bytes in 0 blocks
+==16979==      possibly lost: 0 bytes in 0 blocks
+==16979==    still reachable: 80,819 bytes in 1,401 blocks
+==16979==         suppressed: 0 bytes in 0 blocks
+==16979== Rerun with --leak-check=full to see details of leaked memory
+==16979== 
+==16979== For lists of detected and suppressed errors, rerun with: -s
+==16979== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16978== 
+==16978== HEAP SUMMARY:
+==16978==     in use at exit: 77,682 bytes in 1,300 blocks
+==16978==   total heap usage: 3,266 allocs, 1,966 frees, 181,008 bytes 
allocated
+==16978== 
+==16978== LEAK SUMMARY:
+==16978==    definitely lost: 0 bytes in 0 blocks
+==16978==    indirectly lost: 0 bytes in 0 blocks
+==16978==      possibly lost: 0 bytes in 0 blocks
+==16978==    still reachable: 77,682 bytes in 1,300 blocks
+==16978==         suppressed: 0 bytes in 0 blocks
+==16978== Rerun with --leak-check=full to see details of leaked memory
+==16978== 
+==16978== For lists of detected and suppressed errors, rerun with: -s
+==16978== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16963== 
+==16963== HEAP SUMMARY:
+==16963==     in use at exit: 76,005 bytes in 1,015 blocks
+==16963==   total heap usage: 3,122 allocs, 2,107 frees, 167,015 bytes 
allocated
+==16963== 
+==16963== LEAK SUMMARY:
+==16963==    definitely lost: 0 bytes in 0 blocks
+==16963==    indirectly lost: 0 bytes in 0 blocks
+==16963==      possibly lost: 0 bytes in 0 blocks
+==16963==    still reachable: 76,005 bytes in 1,015 blocks
+==16963==         suppressed: 0 bytes in 0 blocks
+==16963== Rerun with --leak-check=full to see details of leaked memory
+==16963== 
+==16963== For lists of detected and suppressed errors, rerun with: -s
+==16963== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Use of uninitialized value $lib_path in concatenation (.) or string at 
/usr/bin/psql line 149.
+==16960== Memcheck, a memory error detector
+==16960== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16960== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16960== Command: /usr/lib/postgresql/13/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/merchant/merchant-0001.sql -q --set 
ON_ERROR_STOP=1
+==16960== 
+==16960== 
+==16960== HEAP SUMMARY:
+==16960==     in use at exit: 2,661 bytes in 119 blocks
+==16960==   total heap usage: 4,351 allocs, 4,232 frees, 374,395 bytes 
allocated
+==16960== 
+==16960== LEAK SUMMARY:
+==16960==    definitely lost: 54 bytes in 2 blocks
+==16960==    indirectly lost: 68 bytes in 1 blocks
+==16960==      possibly lost: 0 bytes in 0 blocks
+==16960==    still reachable: 2,539 bytes in 116 blocks
+==16960==         suppressed: 0 bytes in 0 blocks
+==16960== Rerun with --leak-check=full to see details of leaked memory
+==16960== 
+==16960== For lists of detected and suppressed errors, rerun with: -s
+==16960== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16984== Memcheck, a memory error detector
+==16984== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16984== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16984== Command: /usr/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/merchant/merchant-0002.sql -q --set 
ON_ERROR_STOP=1
+==16984== 
+==16986== Memcheck, a memory error detector
+==16986== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16986== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16986== Command: /usr/bin/ldd /usr/lib/postgresql/13/bin/psql
+==16986== 
+==16988== 
+==16988== HEAP SUMMARY:
+==16988==     in use at exit: 73,062 bytes in 1,219 blocks
+==16988==   total heap usage: 2,918 allocs, 1,699 frees, 143,902 bytes 
allocated
+==16988== 
+==16988== LEAK SUMMARY:
+==16988==    definitely lost: 0 bytes in 0 blocks
+==16988==    indirectly lost: 0 bytes in 0 blocks
+==16988==      possibly lost: 0 bytes in 0 blocks
+==16988==    still reachable: 73,062 bytes in 1,219 blocks
+==16988==         suppressed: 0 bytes in 0 blocks
+==16988== Rerun with --leak-check=full to see details of leaked memory
+==16988== 
+==16988== For lists of detected and suppressed errors, rerun with: -s
+==16988== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16990== Memcheck, a memory error detector
+==16990== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16990== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16990== Command: /lib64/ld-linux-x86-64.so.2 --verify 
/usr/lib/postgresql/13/bin/psql
+==16990== 
+==16990== 
+==16990== HEAP SUMMARY:
+==16990==     in use at exit: 0 bytes in 0 blocks
+==16990==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+==16990== 
+==16990== All heap blocks were freed -- no leaks are possible
+==16990== 
+==16990== For lists of detected and suppressed errors, rerun with: -s
+==16990== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16992== 
+==16992== HEAP SUMMARY:
+==16992==     in use at exit: 80,819 bytes in 1,401 blocks
+==16992==   total heap usage: 3,611 allocs, 2,210 frees, 192,542 bytes 
allocated
+==16992== 
+==16992== LEAK SUMMARY:
+==16992==    definitely lost: 0 bytes in 0 blocks
+==16992==    indirectly lost: 0 bytes in 0 blocks
+==16992==      possibly lost: 0 bytes in 0 blocks
+==16992==    still reachable: 80,819 bytes in 1,401 blocks
+==16992==         suppressed: 0 bytes in 0 blocks
+==16992== Rerun with --leak-check=full to see details of leaked memory
+==16992== 
+==16992== For lists of detected and suppressed errors, rerun with: -s
+==16992== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16991== 
+==16991== HEAP SUMMARY:
+==16991==     in use at exit: 77,682 bytes in 1,300 blocks
+==16991==   total heap usage: 3,266 allocs, 1,966 frees, 181,008 bytes 
allocated
+==16991== 
+==16991== LEAK SUMMARY:
+==16991==    definitely lost: 0 bytes in 0 blocks
+==16991==    indirectly lost: 0 bytes in 0 blocks
+==16991==      possibly lost: 0 bytes in 0 blocks
+==16991==    still reachable: 77,682 bytes in 1,300 blocks
+==16991==         suppressed: 0 bytes in 0 blocks
+==16991== Rerun with --leak-check=full to see details of leaked memory
+==16991== 
+==16991== For lists of detected and suppressed errors, rerun with: -s
+==16991== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16986== 
+==16986== HEAP SUMMARY:
+==16986==     in use at exit: 76,005 bytes in 1,015 blocks
+==16986==   total heap usage: 3,122 allocs, 2,107 frees, 167,015 bytes 
allocated
+==16986== 
+==16986== LEAK SUMMARY:
+==16986==    definitely lost: 0 bytes in 0 blocks
+==16986==    indirectly lost: 0 bytes in 0 blocks
+==16986==      possibly lost: 0 bytes in 0 blocks
+==16986==    still reachable: 76,005 bytes in 1,015 blocks
+==16986==         suppressed: 0 bytes in 0 blocks
+==16986== Rerun with --leak-check=full to see details of leaked memory
+==16986== 
+==16986== For lists of detected and suppressed errors, rerun with: -s
+==16986== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Use of uninitialized value $lib_path in concatenation (.) or string at 
/usr/bin/psql line 149.
+==16984== Memcheck, a memory error detector
+==16984== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16984== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16984== Command: /usr/lib/postgresql/13/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/merchant/merchant-0002.sql -q --set 
ON_ERROR_STOP=1
+==16984== 
+==16984== 
+==16984== HEAP SUMMARY:
+==16984==     in use at exit: 2,661 bytes in 119 blocks
+==16984==   total heap usage: 1,792 allocs, 1,673 frees, 207,108 bytes 
allocated
+==16984== 
+==16984== LEAK SUMMARY:
+==16984==    definitely lost: 54 bytes in 2 blocks
+==16984==    indirectly lost: 68 bytes in 1 blocks
+==16984==      possibly lost: 0 bytes in 0 blocks
+==16984==    still reachable: 2,539 bytes in 116 blocks
+==16984==         suppressed: 0 bytes in 0 blocks
+==16984== Rerun with --leak-check=full to see details of leaked memory
+==16984== 
+==16984== For lists of detected and suppressed errors, rerun with: -s
+==16984== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16995== Memcheck, a memory error detector
+==16995== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16995== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16995== Command: /usr/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/merchant/merchant-0003.sql -q --set 
ON_ERROR_STOP=1
+==16995== 
+==16997== Memcheck, a memory error detector
+==16997== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16997== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16997== Command: /usr/bin/ldd /usr/lib/postgresql/13/bin/psql
+==16997== 
+==16998== 
+==16998== HEAP SUMMARY:
+==16998==     in use at exit: 73,062 bytes in 1,219 blocks
+==16998==   total heap usage: 2,918 allocs, 1,699 frees, 143,902 bytes 
allocated
+==16998== 
+==16998== LEAK SUMMARY:
+==16998==    definitely lost: 0 bytes in 0 blocks
+==16998==    indirectly lost: 0 bytes in 0 blocks
+==16998==      possibly lost: 0 bytes in 0 blocks
+==16998==    still reachable: 73,062 bytes in 1,219 blocks
+==16998==         suppressed: 0 bytes in 0 blocks
+==16998== Rerun with --leak-check=full to see details of leaked memory
+==16998== 
+==16998== For lists of detected and suppressed errors, rerun with: -s
+==16998== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17000== Memcheck, a memory error detector
+==17000== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17000== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17000== Command: /lib64/ld-linux-x86-64.so.2 --verify 
/usr/lib/postgresql/13/bin/psql
+==17000== 
+==17000== 
+==17000== HEAP SUMMARY:
+==17000==     in use at exit: 0 bytes in 0 blocks
+==17000==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+==17000== 
+==17000== All heap blocks were freed -- no leaks are possible
+==17000== 
+==17000== For lists of detected and suppressed errors, rerun with: -s
+==17000== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17002== 
+==17002== HEAP SUMMARY:
+==17002==     in use at exit: 80,819 bytes in 1,401 blocks
+==17002==   total heap usage: 3,611 allocs, 2,210 frees, 192,542 bytes 
allocated
+==17002== 
+==17002== LEAK SUMMARY:
+==17002==    definitely lost: 0 bytes in 0 blocks
+==17002==    indirectly lost: 0 bytes in 0 blocks
+==17002==      possibly lost: 0 bytes in 0 blocks
+==17002==    still reachable: 80,819 bytes in 1,401 blocks
+==17002==         suppressed: 0 bytes in 0 blocks
+==17002== Rerun with --leak-check=full to see details of leaked memory
+==17002== 
+==17002== For lists of detected and suppressed errors, rerun with: -s
+==17002== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17001== 
+==17001== HEAP SUMMARY:
+==17001==     in use at exit: 77,682 bytes in 1,300 blocks
+==17001==   total heap usage: 3,266 allocs, 1,966 frees, 181,008 bytes 
allocated
+==17001== 
+==17001== LEAK SUMMARY:
+==17001==    definitely lost: 0 bytes in 0 blocks
+==17001==    indirectly lost: 0 bytes in 0 blocks
+==17001==      possibly lost: 0 bytes in 0 blocks
+==17001==    still reachable: 77,682 bytes in 1,300 blocks
+==17001==         suppressed: 0 bytes in 0 blocks
+==17001== Rerun with --leak-check=full to see details of leaked memory
+==17001== 
+==17001== For lists of detected and suppressed errors, rerun with: -s
+==17001== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16997== 
+==16997== HEAP SUMMARY:
+==16997==     in use at exit: 76,005 bytes in 1,015 blocks
+==16997==   total heap usage: 3,122 allocs, 2,107 frees, 167,015 bytes 
allocated
+==16997== 
+==16997== LEAK SUMMARY:
+==16997==    definitely lost: 0 bytes in 0 blocks
+==16997==    indirectly lost: 0 bytes in 0 blocks
+==16997==      possibly lost: 0 bytes in 0 blocks
+==16997==    still reachable: 76,005 bytes in 1,015 blocks
+==16997==         suppressed: 0 bytes in 0 blocks
+==16997== Rerun with --leak-check=full to see details of leaked memory
+==16997== 
+==16997== For lists of detected and suppressed errors, rerun with: -s
+==16997== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Use of uninitialized value $lib_path in concatenation (.) or string at 
/usr/bin/psql line 149.
+==16995== Memcheck, a memory error detector
+==16995== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==16995== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==16995== Command: /usr/lib/postgresql/13/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/merchant/merchant-0003.sql -q --set 
ON_ERROR_STOP=1
+==16995== 
+==16995== 
+==16995== HEAP SUMMARY:
+==16995==     in use at exit: 2,661 bytes in 119 blocks
+==16995==   total heap usage: 1,749 allocs, 1,630 frees, 204,888 bytes 
allocated
+==16995== 
+==16995== LEAK SUMMARY:
+==16995==    definitely lost: 54 bytes in 2 blocks
+==16995==    indirectly lost: 68 bytes in 1 blocks
+==16995==      possibly lost: 0 bytes in 0 blocks
+==16995==    still reachable: 2,539 bytes in 116 blocks
+==16995==         suppressed: 0 bytes in 0 blocks
+==16995== Rerun with --leak-check=full to see details of leaked memory
+==16995== 
+==16995== For lists of detected and suppressed errors, rerun with: -s
+==16995== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17006== Memcheck, a memory error detector
+==17006== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17006== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17006== Command: /usr/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/merchant/merchant-0004.sql -q --set 
ON_ERROR_STOP=1
+==17006== 
+==17008== Memcheck, a memory error detector
+==17008== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17008== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17008== Command: /usr/bin/ldd /usr/lib/postgresql/13/bin/psql
+==17008== 
+==17010== 
+==17010== HEAP SUMMARY:
+==17010==     in use at exit: 73,062 bytes in 1,219 blocks
+==17010==   total heap usage: 2,918 allocs, 1,699 frees, 143,902 bytes 
allocated
+==17010== 
+==17010== LEAK SUMMARY:
+==17010==    definitely lost: 0 bytes in 0 blocks
+==17010==    indirectly lost: 0 bytes in 0 blocks
+==17010==      possibly lost: 0 bytes in 0 blocks
+==17010==    still reachable: 73,062 bytes in 1,219 blocks
+==17010==         suppressed: 0 bytes in 0 blocks
+==17010== Rerun with --leak-check=full to see details of leaked memory
+==17010== 
+==17010== For lists of detected and suppressed errors, rerun with: -s
+==17010== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17012== Memcheck, a memory error detector
+==17012== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17012== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17012== Command: /lib64/ld-linux-x86-64.so.2 --verify 
/usr/lib/postgresql/13/bin/psql
+==17012== 
+==17012== 
+==17012== HEAP SUMMARY:
+==17012==     in use at exit: 0 bytes in 0 blocks
+==17012==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+==17012== 
+==17012== All heap blocks were freed -- no leaks are possible
+==17012== 
+==17012== For lists of detected and suppressed errors, rerun with: -s
+==17012== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17014== 
+==17014== HEAP SUMMARY:
+==17014==     in use at exit: 80,819 bytes in 1,401 blocks
+==17014==   total heap usage: 3,611 allocs, 2,210 frees, 192,542 bytes 
allocated
+==17014== 
+==17014== LEAK SUMMARY:
+==17014==    definitely lost: 0 bytes in 0 blocks
+==17014==    indirectly lost: 0 bytes in 0 blocks
+==17014==      possibly lost: 0 bytes in 0 blocks
+==17014==    still reachable: 80,819 bytes in 1,401 blocks
+==17014==         suppressed: 0 bytes in 0 blocks
+==17014== Rerun with --leak-check=full to see details of leaked memory
+==17014== 
+==17014== For lists of detected and suppressed errors, rerun with: -s
+==17014== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17013== 
+==17013== HEAP SUMMARY:
+==17013==     in use at exit: 77,682 bytes in 1,300 blocks
+==17013==   total heap usage: 3,266 allocs, 1,966 frees, 181,008 bytes 
allocated
+==17013== 
+==17013== LEAK SUMMARY:
+==17013==    definitely lost: 0 bytes in 0 blocks
+==17013==    indirectly lost: 0 bytes in 0 blocks
+==17013==      possibly lost: 0 bytes in 0 blocks
+==17013==    still reachable: 77,682 bytes in 1,300 blocks
+==17013==         suppressed: 0 bytes in 0 blocks
+==17013== Rerun with --leak-check=full to see details of leaked memory
+==17013== 
+==17013== For lists of detected and suppressed errors, rerun with: -s
+==17013== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17008== 
+==17008== HEAP SUMMARY:
+==17008==     in use at exit: 76,005 bytes in 1,015 blocks
+==17008==   total heap usage: 3,122 allocs, 2,107 frees, 167,015 bytes 
allocated
+==17008== 
+==17008== LEAK SUMMARY:
+==17008==    definitely lost: 0 bytes in 0 blocks
+==17008==    indirectly lost: 0 bytes in 0 blocks
+==17008==      possibly lost: 0 bytes in 0 blocks
+==17008==    still reachable: 76,005 bytes in 1,015 blocks
+==17008==         suppressed: 0 bytes in 0 blocks
+==17008== Rerun with --leak-check=full to see details of leaked memory
+==17008== 
+==17008== For lists of detected and suppressed errors, rerun with: -s
+==17008== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Use of uninitialized value $lib_path in concatenation (.) or string at 
/usr/bin/psql line 149.
+==17006== Memcheck, a memory error detector
+==17006== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17006== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17006== Command: /usr/lib/postgresql/13/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/merchant/merchant-0004.sql -q --set 
ON_ERROR_STOP=1
+==17006== 
+==17006== 
+==17006== HEAP SUMMARY:
+==17006==     in use at exit: 2,661 bytes in 119 blocks
+==17006==   total heap usage: 2,115 allocs, 1,996 frees, 228,828 bytes 
allocated
+==17006== 
+==17006== LEAK SUMMARY:
+==17006==    definitely lost: 54 bytes in 2 blocks
+==17006==    indirectly lost: 68 bytes in 1 blocks
+==17006==      possibly lost: 0 bytes in 0 blocks
+==17006==    still reachable: 2,539 bytes in 116 blocks
+==17006==         suppressed: 0 bytes in 0 blocks
+==17006== Rerun with --leak-check=full to see details of leaked memory
+==17006== 
+==17006== For lists of detected and suppressed errors, rerun with: -s
+==17006== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==16945== 
+==16945== HEAP SUMMARY:
+==16945==     in use at exit: 5,287 bytes in 26 blocks
+==16945==   total heap usage: 4,293 allocs, 4,267 frees, 422,599 bytes 
allocated
+==16945== 
+==16945== LEAK SUMMARY:
+==16945==    definitely lost: 0 bytes in 0 blocks
+==16945==    indirectly lost: 0 bytes in 0 blocks
+==16945==      possibly lost: 0 bytes in 0 blocks
+==16945==    still reachable: 5,287 bytes in 26 blocks
+==16945==         suppressed: 0 bytes in 0 blocks
+==16945== Rerun with --leak-check=full to see details of leaked memory
+==16945== 
+==16945== For lists of detected and suppressed errors, rerun with: -s
+==16945== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17017== Memcheck, a memory error detector
+==17017== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17017== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17017== Command: /home/priscilla/install/bin/taler-exchange-dbinit -c 
test_merchant_api-cs.conf -L WARNING -r
+==17017== 
+==17021== Memcheck, a memory error detector
+==17021== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17021== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17021== Command: /usr/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/exchange/drop.sql -q --set 
ON_ERROR_STOP=1
+==17021== 
+==17023== Memcheck, a memory error detector
+==17023== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17023== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17023== Command: /usr/bin/ldd /usr/lib/postgresql/13/bin/psql
+==17023== 
+==17024== 
+==17024== HEAP SUMMARY:
+==17024==     in use at exit: 73,062 bytes in 1,219 blocks
+==17024==   total heap usage: 2,918 allocs, 1,699 frees, 143,902 bytes 
allocated
+==17024== 
+==17024== LEAK SUMMARY:
+==17024==    definitely lost: 0 bytes in 0 blocks
+==17024==    indirectly lost: 0 bytes in 0 blocks
+==17024==      possibly lost: 0 bytes in 0 blocks
+==17024==    still reachable: 73,062 bytes in 1,219 blocks
+==17024==         suppressed: 0 bytes in 0 blocks
+==17024== Rerun with --leak-check=full to see details of leaked memory
+==17024== 
+==17024== For lists of detected and suppressed errors, rerun with: -s
+==17024== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17026== Memcheck, a memory error detector
+==17026== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17026== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17026== Command: /lib64/ld-linux-x86-64.so.2 --verify 
/usr/lib/postgresql/13/bin/psql
+==17026== 
+==17026== 
+==17026== HEAP SUMMARY:
+==17026==     in use at exit: 0 bytes in 0 blocks
+==17026==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+==17026== 
+==17026== All heap blocks were freed -- no leaks are possible
+==17026== 
+==17026== For lists of detected and suppressed errors, rerun with: -s
+==17026== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17028== 
+==17028== HEAP SUMMARY:
+==17028==     in use at exit: 80,819 bytes in 1,401 blocks
+==17028==   total heap usage: 3,611 allocs, 2,210 frees, 192,542 bytes 
allocated
+==17028== 
+==17028== LEAK SUMMARY:
+==17028==    definitely lost: 0 bytes in 0 blocks
+==17028==    indirectly lost: 0 bytes in 0 blocks
+==17028==      possibly lost: 0 bytes in 0 blocks
+==17028==    still reachable: 80,819 bytes in 1,401 blocks
+==17028==         suppressed: 0 bytes in 0 blocks
+==17028== Rerun with --leak-check=full to see details of leaked memory
+==17028== 
+==17028== For lists of detected and suppressed errors, rerun with: -s
+==17028== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17027== 
+==17027== HEAP SUMMARY:
+==17027==     in use at exit: 77,682 bytes in 1,300 blocks
+==17027==   total heap usage: 3,266 allocs, 1,966 frees, 181,008 bytes 
allocated
+==17027== 
+==17027== LEAK SUMMARY:
+==17027==    definitely lost: 0 bytes in 0 blocks
+==17027==    indirectly lost: 0 bytes in 0 blocks
+==17027==      possibly lost: 0 bytes in 0 blocks
+==17027==    still reachable: 77,682 bytes in 1,300 blocks
+==17027==         suppressed: 0 bytes in 0 blocks
+==17027== Rerun with --leak-check=full to see details of leaked memory
+==17027== 
+==17027== For lists of detected and suppressed errors, rerun with: -s
+==17027== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17023== 
+==17023== HEAP SUMMARY:
+==17023==     in use at exit: 76,005 bytes in 1,015 blocks
+==17023==   total heap usage: 3,122 allocs, 2,107 frees, 167,015 bytes 
allocated
+==17023== 
+==17023== LEAK SUMMARY:
+==17023==    definitely lost: 0 bytes in 0 blocks
+==17023==    indirectly lost: 0 bytes in 0 blocks
+==17023==      possibly lost: 0 bytes in 0 blocks
+==17023==    still reachable: 76,005 bytes in 1,015 blocks
+==17023==         suppressed: 0 bytes in 0 blocks
+==17023== Rerun with --leak-check=full to see details of leaked memory
+==17023== 
+==17023== For lists of detected and suppressed errors, rerun with: -s
+==17023== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Use of uninitialized value $lib_path in concatenation (.) or string at 
/usr/bin/psql line 149.
+==17021== Memcheck, a memory error detector
+==17021== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17021== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17021== Command: /usr/lib/postgresql/13/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/exchange/drop.sql -q --set 
ON_ERROR_STOP=1
+==17021== 
+psql:/home/priscilla/install/share/taler/sql/exchange/drop.sql:25: NOTICE:  
drop cascades to 216 other objects
+DETAIL:  drop cascades to table exchange.exchange_tables
+drop cascades to function exchange.create_partitioned_table(character 
varying,character varying,character varying,character varying)
+drop cascades to function exchange.comment_partitioned_table(character 
varying,character varying,character varying)
+drop cascades to function exchange.comment_partitioned_column(character 
varying,character varying,character varying,character varying)
+drop cascades to function exchange.do_create_tables(integer)
+drop cascades to table exchange.denominations
+drop cascades to table exchange.denomination_revocations
+drop cascades to function exchange.create_table_wire_targets(character varying)
+drop cascades to function exchange.constrain_table_wire_targets(character 
varying)
+drop cascades to table exchange.kyc_alerts
+drop cascades to table exchange.wire_fee
+drop cascades to table exchange.global_fee
+drop cascades to table exchange.wire_accounts
+drop cascades to table exchange.auditors
+drop cascades to table exchange.auditor_denom_sigs
+drop cascades to table exchange.exchange_sign_keys
+drop cascades to table exchange.signkey_revocations
+drop cascades to table exchange.extensions
+drop cascades to table exchange.profit_drains
+drop cascades to function 
exchange.create_table_legitimization_processes(character varying)
+drop cascades to function 
exchange.constrain_table_legitimization_processes(character varying)
+drop cascades to function 
exchange.create_table_legitimization_requirements(character varying)
+drop cascades to function 
exchange.constrain_table_legitimization_requirements(character varying)
+drop cascades to function exchange.create_table_reserves(character varying)
+drop cascades to function exchange.constrain_table_reserves(character varying)
+drop cascades to function exchange.create_table_reserves_in(character varying)
+drop cascades to function exchange.constrain_table_reserves_in(character 
varying)
+drop cascades to function exchange.foreign_table_reserves_in()
+drop cascades to function exchange.create_table_reserves_close(character 
varying)
+drop cascades to function exchange.constrain_table_reserves_close(character 
varying)
+drop cascades to function exchange.foreign_table_reserves_close()
+drop cascades to function exchange.create_table_close_requests(character 
varying)
+drop cascades to function exchange.constrain_table_close_requests(character 
varying)
+drop cascades to function exchange.foreign_table_close_requests()
+drop cascades to function 
exchange.create_table_reserves_open_deposits(character varying)
+drop cascades to function 
exchange.constrain_table_reserves_open_deposits(character varying)
+drop cascades to function 
exchange.create_table_reserves_open_requests(character varying)
+drop cascades to function 
exchange.constrain_table_reserves_open_requests(character varying)
+drop cascades to function exchange.foreign_table_reserves_open_requests()
+drop cascades to function exchange.create_table_reserves_out(character varying)
+drop cascades to function exchange.constrain_table_reserves_out(character 
varying)
+drop cascades to function exchange.foreign_table_reserves_out()
+drop cascades to function 
exchange.create_table_reserves_out_by_reserve(character varying)
+drop cascades to function 
exchange.constrain_table_reserves_out_by_reserve(character varying)
+drop cascades to function exchange.reserves_out_by_reserve_insert_trigger()
+drop cascades to function exchange.reserves_out_by_reserve_delete_trigger()
+drop cascades to function exchange.master_table_reserves_out()
+drop cascades to function exchange.create_table_known_coins(character varying)
+drop cascades to function exchange.constrain_table_known_coins(character 
varying)
+drop cascades to function exchange.foreign_table_known_coins()
+drop cascades to function exchange.create_table_refresh_commitments(character 
varying)
+drop cascades to function 
exchange.constrain_table_refresh_commitments(character varying)
+drop cascades to function exchange.foreign_table_refresh_commitments()
+drop cascades to function 
exchange.create_table_refresh_revealed_coins(character varying)
+drop cascades to function 
exchange.constrain_table_refresh_revealed_coins(character varying)
+drop cascades to function exchange.foreign_table_refresh_revealed_coins()
+drop cascades to function 
exchange.create_table_refresh_transfer_keys(character varying)
+drop cascades to function 
exchange.constrain_table_refresh_transfer_keys(character varying)
+drop cascades to function exchange.foreign_table_refresh_transfer_keys()
+drop cascades to function exchange.create_table_deposits(character varying)
+drop cascades to function exchange.constrain_table_deposits(character varying)
+drop cascades to function exchange.foreign_table_deposits()
+drop cascades to function exchange.create_table_deposits_by_ready(character 
varying)
+drop cascades to function exchange.constrain_table_deposits_by_ready(character 
varying)
+drop cascades to function 
exchange.create_table_deposits_for_matching(character varying)
+drop cascades to function 
exchange.constrain_table_deposits_for_matching(character varying)
+drop cascades to function exchange.deposits_insert_trigger()
+drop cascades to function exchange.deposits_update_trigger()
+drop cascades to function exchange.deposits_delete_trigger()
+drop cascades to function exchange.master_table_deposits()
+drop cascades to function exchange.create_table_refunds(character varying)
+drop cascades to function exchange.constrain_table_refunds(character varying)
+drop cascades to function exchange.foreign_table_refunds()
+drop cascades to function exchange.create_table_wire_out(character varying)
+drop cascades to function exchange.constrain_table_wire_out(character varying)
+drop cascades to function exchange.wire_out_delete_trigger()
+drop cascades to function exchange.master_table_wire_out()
+drop cascades to function 
exchange.create_table_aggregation_transient(character varying)
+drop cascades to function exchange.create_table_aggregation_tracking(character 
varying)
+drop cascades to function 
exchange.constrain_table_aggregation_tracking(character varying)
+drop cascades to function exchange.foreign_table_aggregation_tracking()
+drop cascades to function exchange.create_table_recoup(character varying)
+drop cascades to function exchange.constrain_table_recoup(character varying)
+drop cascades to function exchange.foreign_table_recoup()
+drop cascades to function exchange.create_table_recoup_by_reserve(character 
varying)
+drop cascades to function exchange.constrain_table_recoup_by_reserve(character 
varying)
+drop cascades to function exchange.recoup_insert_trigger()
+drop cascades to function exchange.recoup_delete_trigger()
+drop cascades to function exchange.master_table_recoup()
+drop cascades to function exchange.create_table_recoup_refresh(character 
varying)
+drop cascades to function exchange.constrain_table_recoup_refresh(character 
varying)
+drop cascades to function exchange.foreign_table_recoup_refresh()
+drop cascades to function exchange.create_table_prewire(character varying)
+drop cascades to function exchange.constrain_table_prewire(character varying)
+drop cascades to function exchange.create_table_cs_nonce_locks(character 
varying)
+drop cascades to function exchange.constrain_table_cs_nonce_locks(character 
varying)
+drop cascades to function exchange.create_table_purse_requests(character 
varying)
+drop cascades to function exchange.constrain_table_purse_requests(character 
varying)
+drop cascades to function exchange.create_table_purse_merges(character varying)
+drop cascades to function exchange.constrain_table_purse_merges(character 
varying)
+and 116 other objects (see server log for list)
+==17021== 
+==17021== HEAP SUMMARY:
+==17021==     in use at exit: 2,652 bytes in 119 blocks
+==17021==   total heap usage: 1,821 allocs, 1,702 frees, 237,066 bytes 
allocated
+==17021== 
+==17021== LEAK SUMMARY:
+==17021==    definitely lost: 54 bytes in 2 blocks
+==17021==    indirectly lost: 59 bytes in 1 blocks
+==17021==      possibly lost: 0 bytes in 0 blocks
+==17021==    still reachable: 2,539 bytes in 116 blocks
+==17021==         suppressed: 0 bytes in 0 blocks
+==17021== Rerun with --leak-check=full to see details of leaked memory
+==17021== 
+==17021== For lists of detected and suppressed errors, rerun with: -s
+==17021== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17033== Memcheck, a memory error detector
+==17033== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17033== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17033== Command: /usr/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/exchange/exchange-0001.sql -q --set 
ON_ERROR_STOP=1
+==17033== 
+==17035== Memcheck, a memory error detector
+==17035== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17035== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17035== Command: /usr/bin/ldd /usr/lib/postgresql/13/bin/psql
+==17035== 
+==17037== 
+==17037== HEAP SUMMARY:
+==17037==     in use at exit: 73,062 bytes in 1,219 blocks
+==17037==   total heap usage: 2,918 allocs, 1,699 frees, 143,902 bytes 
allocated
+==17037== 
+==17037== LEAK SUMMARY:
+==17037==    definitely lost: 0 bytes in 0 blocks
+==17037==    indirectly lost: 0 bytes in 0 blocks
+==17037==      possibly lost: 0 bytes in 0 blocks
+==17037==    still reachable: 73,062 bytes in 1,219 blocks
+==17037==         suppressed: 0 bytes in 0 blocks
+==17037== Rerun with --leak-check=full to see details of leaked memory
+==17037== 
+==17037== For lists of detected and suppressed errors, rerun with: -s
+==17037== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17039== Memcheck, a memory error detector
+==17039== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17039== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17039== Command: /lib64/ld-linux-x86-64.so.2 --verify 
/usr/lib/postgresql/13/bin/psql
+==17039== 
+==17039== 
+==17039== HEAP SUMMARY:
+==17039==     in use at exit: 0 bytes in 0 blocks
+==17039==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+==17039== 
+==17039== All heap blocks were freed -- no leaks are possible
+==17039== 
+==17039== For lists of detected and suppressed errors, rerun with: -s
+==17039== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17041== 
+==17041== HEAP SUMMARY:
+==17041==     in use at exit: 80,819 bytes in 1,401 blocks
+==17041==   total heap usage: 3,611 allocs, 2,210 frees, 192,542 bytes 
allocated
+==17041== 
+==17041== LEAK SUMMARY:
+==17041==    definitely lost: 0 bytes in 0 blocks
+==17041==    indirectly lost: 0 bytes in 0 blocks
+==17041==      possibly lost: 0 bytes in 0 blocks
+==17041==    still reachable: 80,819 bytes in 1,401 blocks
+==17041==         suppressed: 0 bytes in 0 blocks
+==17041== Rerun with --leak-check=full to see details of leaked memory
+==17041== 
+==17041== For lists of detected and suppressed errors, rerun with: -s
+==17041== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17040== 
+==17040== HEAP SUMMARY:
+==17040==     in use at exit: 77,682 bytes in 1,300 blocks
+==17040==   total heap usage: 3,266 allocs, 1,966 frees, 181,008 bytes 
allocated
+==17040== 
+==17040== LEAK SUMMARY:
+==17040==    definitely lost: 0 bytes in 0 blocks
+==17040==    indirectly lost: 0 bytes in 0 blocks
+==17040==      possibly lost: 0 bytes in 0 blocks
+==17040==    still reachable: 77,682 bytes in 1,300 blocks
+==17040==         suppressed: 0 bytes in 0 blocks
+==17040== Rerun with --leak-check=full to see details of leaked memory
+==17040== 
+==17040== For lists of detected and suppressed errors, rerun with: -s
+==17040== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17035== 
+==17035== HEAP SUMMARY:
+==17035==     in use at exit: 76,005 bytes in 1,015 blocks
+==17035==   total heap usage: 3,122 allocs, 2,107 frees, 167,015 bytes 
allocated
+==17035== 
+==17035== LEAK SUMMARY:
+==17035==    definitely lost: 0 bytes in 0 blocks
+==17035==    indirectly lost: 0 bytes in 0 blocks
+==17035==      possibly lost: 0 bytes in 0 blocks
+==17035==    still reachable: 76,005 bytes in 1,015 blocks
+==17035==         suppressed: 0 bytes in 0 blocks
+==17035== Rerun with --leak-check=full to see details of leaked memory
+==17035== 
+==17035== For lists of detected and suppressed errors, rerun with: -s
+==17035== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Use of uninitialized value $lib_path in concatenation (.) or string at 
/usr/bin/psql line 149.
+==17033== Memcheck, a memory error detector
+==17033== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17033== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17033== Command: /usr/lib/postgresql/13/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/exchange/exchange-0001.sql -q --set 
ON_ERROR_STOP=1
+==17033== 
+==17033== 
+==17033== HEAP SUMMARY:
+==17033==     in use at exit: 2,917 bytes in 119 blocks
+==17033==   total heap usage: 2,644 allocs, 2,525 frees, 258,275 bytes 
allocated
+==17033== 
+==17033== LEAK SUMMARY:
+==17033==    definitely lost: 54 bytes in 2 blocks
+==17033==    indirectly lost: 68 bytes in 1 blocks
+==17033==      possibly lost: 0 bytes in 0 blocks
+==17033==    still reachable: 2,795 bytes in 116 blocks
+==17033==         suppressed: 0 bytes in 0 blocks
+==17033== Rerun with --leak-check=full to see details of leaked memory
+==17033== 
+==17033== For lists of detected and suppressed errors, rerun with: -s
+==17033== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17044== Memcheck, a memory error detector
+==17044== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17044== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17044== Command: /usr/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/exchange/exchange-0002.sql -q --set 
ON_ERROR_STOP=1
+==17044== 
+==17046== Memcheck, a memory error detector
+==17046== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17046== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17046== Command: /usr/bin/ldd /usr/lib/postgresql/13/bin/psql
+==17046== 
+==17048== 
+==17048== HEAP SUMMARY:
+==17048==     in use at exit: 73,062 bytes in 1,219 blocks
+==17048==   total heap usage: 2,918 allocs, 1,699 frees, 143,902 bytes 
allocated
+==17048== 
+==17048== LEAK SUMMARY:
+==17048==    definitely lost: 0 bytes in 0 blocks
+==17048==    indirectly lost: 0 bytes in 0 blocks
+==17048==      possibly lost: 0 bytes in 0 blocks
+==17048==    still reachable: 73,062 bytes in 1,219 blocks
+==17048==         suppressed: 0 bytes in 0 blocks
+==17048== Rerun with --leak-check=full to see details of leaked memory
+==17048== 
+==17048== For lists of detected and suppressed errors, rerun with: -s
+==17048== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17050== Memcheck, a memory error detector
+==17050== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17050== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17050== Command: /lib64/ld-linux-x86-64.so.2 --verify 
/usr/lib/postgresql/13/bin/psql
+==17050== 
+==17050== 
+==17050== HEAP SUMMARY:
+==17050==     in use at exit: 0 bytes in 0 blocks
+==17050==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+==17050== 
+==17050== All heap blocks were freed -- no leaks are possible
+==17050== 
+==17050== For lists of detected and suppressed errors, rerun with: -s
+==17050== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17052== 
+==17052== HEAP SUMMARY:
+==17052==     in use at exit: 80,819 bytes in 1,401 blocks
+==17052==   total heap usage: 3,611 allocs, 2,210 frees, 192,542 bytes 
allocated
+==17052== 
+==17052== LEAK SUMMARY:
+==17052==    definitely lost: 0 bytes in 0 blocks
+==17052==    indirectly lost: 0 bytes in 0 blocks
+==17052==      possibly lost: 0 bytes in 0 blocks
+==17052==    still reachable: 80,819 bytes in 1,401 blocks
+==17052==         suppressed: 0 bytes in 0 blocks
+==17052== Rerun with --leak-check=full to see details of leaked memory
+==17052== 
+==17052== For lists of detected and suppressed errors, rerun with: -s
+==17052== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17051== 
+==17051== HEAP SUMMARY:
+==17051==     in use at exit: 77,682 bytes in 1,300 blocks
+==17051==   total heap usage: 3,266 allocs, 1,966 frees, 181,008 bytes 
allocated
+==17051== 
+==17051== LEAK SUMMARY:
+==17051==    definitely lost: 0 bytes in 0 blocks
+==17051==    indirectly lost: 0 bytes in 0 blocks
+==17051==      possibly lost: 0 bytes in 0 blocks
+==17051==    still reachable: 77,682 bytes in 1,300 blocks
+==17051==         suppressed: 0 bytes in 0 blocks
+==17051== Rerun with --leak-check=full to see details of leaked memory
+==17051== 
+==17051== For lists of detected and suppressed errors, rerun with: -s
+==17051== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17046== 
+==17046== HEAP SUMMARY:
+==17046==     in use at exit: 76,005 bytes in 1,015 blocks
+==17046==   total heap usage: 3,122 allocs, 2,107 frees, 167,015 bytes 
allocated
+==17046== 
+==17046== LEAK SUMMARY:
+==17046==    definitely lost: 0 bytes in 0 blocks
+==17046==    indirectly lost: 0 bytes in 0 blocks
+==17046==      possibly lost: 0 bytes in 0 blocks
+==17046==    still reachable: 76,005 bytes in 1,015 blocks
+==17046==         suppressed: 0 bytes in 0 blocks
+==17046== Rerun with --leak-check=full to see details of leaked memory
+==17046== 
+==17046== For lists of detected and suppressed errors, rerun with: -s
+==17046== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Use of uninitialized value $lib_path in concatenation (.) or string at 
/usr/bin/psql line 149.
+==17044== Memcheck, a memory error detector
+==17044== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17044== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17044== Command: /usr/lib/postgresql/13/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/exchange/exchange-0002.sql -q --set 
ON_ERROR_STOP=1
+==17044== 
+==17044== 
+==17044== HEAP SUMMARY:
+==17044==     in use at exit: 2,917 bytes in 119 blocks
+==17044==   total heap usage: 17,084 allocs, 16,965 frees, 981,951 bytes 
allocated
+==17044== 
+==17044== LEAK SUMMARY:
+==17044==    definitely lost: 54 bytes in 2 blocks
+==17044==    indirectly lost: 68 bytes in 1 blocks
+==17044==      possibly lost: 0 bytes in 0 blocks
+==17044==    still reachable: 2,795 bytes in 116 blocks
+==17044==         suppressed: 0 bytes in 0 blocks
+==17044== Rerun with --leak-check=full to see details of leaked memory
+==17044== 
+==17044== For lists of detected and suppressed errors, rerun with: -s
+==17044== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17058== Memcheck, a memory error detector
+==17058== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17058== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17058== Command: /usr/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/exchange/exchange-0003.sql -q --set 
ON_ERROR_STOP=1
+==17058== 
+==17059== Memcheck, a memory error detector
+==17059== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17059== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17059== Command: /usr/bin/ldd /usr/lib/postgresql/13/bin/psql
+==17059== 
+==17061== 
+==17061== HEAP SUMMARY:
+==17061==     in use at exit: 73,062 bytes in 1,219 blocks
+==17061==   total heap usage: 2,918 allocs, 1,699 frees, 143,902 bytes 
allocated
+==17061== 
+==17061== LEAK SUMMARY:
+==17061==    definitely lost: 0 bytes in 0 blocks
+==17061==    indirectly lost: 0 bytes in 0 blocks
+==17061==      possibly lost: 0 bytes in 0 blocks
+==17061==    still reachable: 73,062 bytes in 1,219 blocks
+==17061==         suppressed: 0 bytes in 0 blocks
+==17061== Rerun with --leak-check=full to see details of leaked memory
+==17061== 
+==17061== For lists of detected and suppressed errors, rerun with: -s
+==17061== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17063== Memcheck, a memory error detector
+==17063== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17063== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17063== Command: /lib64/ld-linux-x86-64.so.2 --verify 
/usr/lib/postgresql/13/bin/psql
+==17063== 
+==17063== 
+==17063== HEAP SUMMARY:
+==17063==     in use at exit: 0 bytes in 0 blocks
+==17063==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+==17063== 
+==17063== All heap blocks were freed -- no leaks are possible
+==17063== 
+==17063== For lists of detected and suppressed errors, rerun with: -s
+==17063== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17065== 
+==17065== HEAP SUMMARY:
+==17065==     in use at exit: 80,819 bytes in 1,401 blocks
+==17065==   total heap usage: 3,611 allocs, 2,210 frees, 192,542 bytes 
allocated
+==17065== 
+==17065== LEAK SUMMARY:
+==17065==    definitely lost: 0 bytes in 0 blocks
+==17065==    indirectly lost: 0 bytes in 0 blocks
+==17065==      possibly lost: 0 bytes in 0 blocks
+==17065==    still reachable: 80,819 bytes in 1,401 blocks
+==17065==         suppressed: 0 bytes in 0 blocks
+==17065== Rerun with --leak-check=full to see details of leaked memory
+==17065== 
+==17065== For lists of detected and suppressed errors, rerun with: -s
+==17065== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17064== 
+==17064== HEAP SUMMARY:
+==17064==     in use at exit: 77,682 bytes in 1,300 blocks
+==17064==   total heap usage: 3,266 allocs, 1,966 frees, 181,008 bytes 
allocated
+==17064== 
+==17064== LEAK SUMMARY:
+==17064==    definitely lost: 0 bytes in 0 blocks
+==17064==    indirectly lost: 0 bytes in 0 blocks
+==17064==      possibly lost: 0 bytes in 0 blocks
+==17064==    still reachable: 77,682 bytes in 1,300 blocks
+==17064==         suppressed: 0 bytes in 0 blocks
+==17064== Rerun with --leak-check=full to see details of leaked memory
+==17064== 
+==17064== For lists of detected and suppressed errors, rerun with: -s
+==17064== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17059== 
+==17059== HEAP SUMMARY:
+==17059==     in use at exit: 76,005 bytes in 1,015 blocks
+==17059==   total heap usage: 3,122 allocs, 2,107 frees, 167,015 bytes 
allocated
+==17059== 
+==17059== LEAK SUMMARY:
+==17059==    definitely lost: 0 bytes in 0 blocks
+==17059==    indirectly lost: 0 bytes in 0 blocks
+==17059==      possibly lost: 0 bytes in 0 blocks
+==17059==    still reachable: 76,005 bytes in 1,015 blocks
+==17059==         suppressed: 0 bytes in 0 blocks
+==17059== Rerun with --leak-check=full to see details of leaked memory
+==17059== 
+==17059== For lists of detected and suppressed errors, rerun with: -s
+==17059== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Use of uninitialized value $lib_path in concatenation (.) or string at 
/usr/bin/psql line 149.
+==17058== Memcheck, a memory error detector
+==17058== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17058== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17058== Command: /usr/lib/postgresql/13/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/exchange/exchange-0003.sql -q --set 
ON_ERROR_STOP=1
+==17058== 
+==17058== 
+==17058== HEAP SUMMARY:
+==17058==     in use at exit: 2,661 bytes in 119 blocks
+==17058==   total heap usage: 3,444 allocs, 3,325 frees, 297,628 bytes 
allocated
+==17058== 
+==17058== LEAK SUMMARY:
+==17058==    definitely lost: 54 bytes in 2 blocks
+==17058==    indirectly lost: 68 bytes in 1 blocks
+==17058==      possibly lost: 0 bytes in 0 blocks
+==17058==    still reachable: 2,539 bytes in 116 blocks
+==17058==         suppressed: 0 bytes in 0 blocks
+==17058== Rerun with --leak-check=full to see details of leaked memory
+==17058== 
+==17058== For lists of detected and suppressed errors, rerun with: -s
+==17058== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17070== Memcheck, a memory error detector
+==17070== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17070== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17070== Command: /usr/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/exchange/procedures.sql -q --set 
ON_ERROR_STOP=1
+==17070== 
+==17072== Memcheck, a memory error detector
+==17072== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17072== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17072== Command: /usr/bin/ldd /usr/lib/postgresql/13/bin/psql
+==17072== 
+==17074== 
+==17074== HEAP SUMMARY:
+==17074==     in use at exit: 73,062 bytes in 1,219 blocks
+==17074==   total heap usage: 2,918 allocs, 1,699 frees, 143,902 bytes 
allocated
+==17074== 
+==17074== LEAK SUMMARY:
+==17074==    definitely lost: 0 bytes in 0 blocks
+==17074==    indirectly lost: 0 bytes in 0 blocks
+==17074==      possibly lost: 0 bytes in 0 blocks
+==17074==    still reachable: 73,062 bytes in 1,219 blocks
+==17074==         suppressed: 0 bytes in 0 blocks
+==17074== Rerun with --leak-check=full to see details of leaked memory
+==17074== 
+==17074== For lists of detected and suppressed errors, rerun with: -s
+==17074== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17076== Memcheck, a memory error detector
+==17076== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17076== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17076== Command: /lib64/ld-linux-x86-64.so.2 --verify 
/usr/lib/postgresql/13/bin/psql
+==17076== 
+==17076== 
+==17076== HEAP SUMMARY:
+==17076==     in use at exit: 0 bytes in 0 blocks
+==17076==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+==17076== 
+==17076== All heap blocks were freed -- no leaks are possible
+==17076== 
+==17076== For lists of detected and suppressed errors, rerun with: -s
+==17076== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17078== 
+==17078== HEAP SUMMARY:
+==17078==     in use at exit: 80,819 bytes in 1,401 blocks
+==17078==   total heap usage: 3,611 allocs, 2,210 frees, 192,542 bytes 
allocated
+==17078== 
+==17078== LEAK SUMMARY:
+==17078==    definitely lost: 0 bytes in 0 blocks
+==17078==    indirectly lost: 0 bytes in 0 blocks
+==17078==      possibly lost: 0 bytes in 0 blocks
+==17078==    still reachable: 80,819 bytes in 1,401 blocks
+==17078==         suppressed: 0 bytes in 0 blocks
+==17078== Rerun with --leak-check=full to see details of leaked memory
+==17078== 
+==17078== For lists of detected and suppressed errors, rerun with: -s
+==17078== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17077== 
+==17077== HEAP SUMMARY:
+==17077==     in use at exit: 77,682 bytes in 1,300 blocks
+==17077==   total heap usage: 3,266 allocs, 1,966 frees, 181,008 bytes 
allocated
+==17077== 
+==17077== LEAK SUMMARY:
+==17077==    definitely lost: 0 bytes in 0 blocks
+==17077==    indirectly lost: 0 bytes in 0 blocks
+==17077==      possibly lost: 0 bytes in 0 blocks
+==17077==    still reachable: 77,682 bytes in 1,300 blocks
+==17077==         suppressed: 0 bytes in 0 blocks
+==17077== Rerun with --leak-check=full to see details of leaked memory
+==17077== 
+==17077== For lists of detected and suppressed errors, rerun with: -s
+==17077== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17072== 
+==17072== HEAP SUMMARY:
+==17072==     in use at exit: 76,005 bytes in 1,015 blocks
+==17072==   total heap usage: 3,122 allocs, 2,107 frees, 167,015 bytes 
allocated
+==17072== 
+==17072== LEAK SUMMARY:
+==17072==    definitely lost: 0 bytes in 0 blocks
+==17072==    indirectly lost: 0 bytes in 0 blocks
+==17072==      possibly lost: 0 bytes in 0 blocks
+==17072==    still reachable: 76,005 bytes in 1,015 blocks
+==17072==         suppressed: 0 bytes in 0 blocks
+==17072== Rerun with --leak-check=full to see details of leaked memory
+==17072== 
+==17072== For lists of detected and suppressed errors, rerun with: -s
+==17072== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Use of uninitialized value $lib_path in concatenation (.) or string at 
/usr/bin/psql line 149.
+==17070== Memcheck, a memory error detector
+==17070== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17070== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17070== Command: /usr/lib/postgresql/13/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/exchange/procedures.sql -q --set 
ON_ERROR_STOP=1
+==17070== 
+==17070== 
+==17070== HEAP SUMMARY:
+==17070==     in use at exit: 2,914 bytes in 119 blocks
+==17070==   total heap usage: 12,087 allocs, 11,968 frees, 722,311 bytes 
allocated
+==17070== 
+==17070== LEAK SUMMARY:
+==17070==    definitely lost: 54 bytes in 2 blocks
+==17070==    indirectly lost: 65 bytes in 1 blocks
+==17070==      possibly lost: 0 bytes in 0 blocks
+==17070==    still reachable: 2,795 bytes in 116 blocks
+==17070==         suppressed: 0 bytes in 0 blocks
+==17070== Rerun with --leak-check=full to see details of leaked memory
+==17070== 
+==17070== For lists of detected and suppressed errors, rerun with: -s
+==17070== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17017== 
+==17017== HEAP SUMMARY:
+==17017==     in use at exit: 5,287 bytes in 26 blocks
+==17017==   total heap usage: 3,693 allocs, 3,667 frees, 445,988 bytes 
allocated
+==17017== 
+==17017== LEAK SUMMARY:
+==17017==    definitely lost: 0 bytes in 0 blocks
+==17017==    indirectly lost: 0 bytes in 0 blocks
+==17017==      possibly lost: 0 bytes in 0 blocks
+==17017==    still reachable: 5,287 bytes in 26 blocks
+==17017==         suppressed: 0 bytes in 0 blocks
+==17017== Rerun with --leak-check=full to see details of leaked memory
+==17017== 
+==17017== For lists of detected and suppressed errors, rerun with: -s
+==17017== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17081== Memcheck, a memory error detector
+==17081== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17081== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17081== Command: /home/priscilla/install/bin/taler-auditor-dbinit -c 
test_merchant_api-cs.conf -R
+==17081== 
+==17084== Memcheck, a memory error detector
+==17084== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17084== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17084== Command: /usr/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/auditor/drop.sql -q --set 
ON_ERROR_STOP=1
+==17084== 
+==17086== Memcheck, a memory error detector
+==17086== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17086== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17086== Command: /usr/bin/ldd /usr/lib/postgresql/13/bin/psql
+==17086== 
+==17088== 
+==17088== HEAP SUMMARY:
+==17088==     in use at exit: 73,062 bytes in 1,219 blocks
+==17088==   total heap usage: 2,918 allocs, 1,699 frees, 143,902 bytes 
allocated
+==17088== 
+==17088== LEAK SUMMARY:
+==17088==    definitely lost: 0 bytes in 0 blocks
+==17088==    indirectly lost: 0 bytes in 0 blocks
+==17088==      possibly lost: 0 bytes in 0 blocks
+==17088==    still reachable: 73,062 bytes in 1,219 blocks
+==17088==         suppressed: 0 bytes in 0 blocks
+==17088== Rerun with --leak-check=full to see details of leaked memory
+==17088== 
+==17088== For lists of detected and suppressed errors, rerun with: -s
+==17088== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17090== Memcheck, a memory error detector
+==17090== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17090== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17090== Command: /lib64/ld-linux-x86-64.so.2 --verify 
/usr/lib/postgresql/13/bin/psql
+==17090== 
+==17090== 
+==17090== HEAP SUMMARY:
+==17090==     in use at exit: 0 bytes in 0 blocks
+==17090==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+==17090== 
+==17090== All heap blocks were freed -- no leaks are possible
+==17090== 
+==17090== For lists of detected and suppressed errors, rerun with: -s
+==17090== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17092== 
+==17092== HEAP SUMMARY:
+==17092==     in use at exit: 80,819 bytes in 1,401 blocks
+==17092==   total heap usage: 3,611 allocs, 2,210 frees, 192,542 bytes 
allocated
+==17092== 
+==17092== LEAK SUMMARY:
+==17092==    definitely lost: 0 bytes in 0 blocks
+==17092==    indirectly lost: 0 bytes in 0 blocks
+==17092==      possibly lost: 0 bytes in 0 blocks
+==17092==    still reachable: 80,819 bytes in 1,401 blocks
+==17092==         suppressed: 0 bytes in 0 blocks
+==17092== Rerun with --leak-check=full to see details of leaked memory
+==17092== 
+==17092== For lists of detected and suppressed errors, rerun with: -s
+==17092== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17091== 
+==17091== HEAP SUMMARY:
+==17091==     in use at exit: 77,682 bytes in 1,300 blocks
+==17091==   total heap usage: 3,266 allocs, 1,966 frees, 181,008 bytes 
allocated
+==17091== 
+==17091== LEAK SUMMARY:
+==17091==    definitely lost: 0 bytes in 0 blocks
+==17091==    indirectly lost: 0 bytes in 0 blocks
+==17091==      possibly lost: 0 bytes in 0 blocks
+==17091==    still reachable: 77,682 bytes in 1,300 blocks
+==17091==         suppressed: 0 bytes in 0 blocks
+==17091== Rerun with --leak-check=full to see details of leaked memory
+==17091== 
+==17091== For lists of detected and suppressed errors, rerun with: -s
+==17091== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17086== 
+==17086== HEAP SUMMARY:
+==17086==     in use at exit: 76,005 bytes in 1,015 blocks
+==17086==   total heap usage: 3,122 allocs, 2,107 frees, 167,015 bytes 
allocated
+==17086== 
+==17086== LEAK SUMMARY:
+==17086==    definitely lost: 0 bytes in 0 blocks
+==17086==    indirectly lost: 0 bytes in 0 blocks
+==17086==      possibly lost: 0 bytes in 0 blocks
+==17086==    still reachable: 76,005 bytes in 1,015 blocks
+==17086==         suppressed: 0 bytes in 0 blocks
+==17086== Rerun with --leak-check=full to see details of leaked memory
+==17086== 
+==17086== For lists of detected and suppressed errors, rerun with: -s
+==17086== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Use of uninitialized value $lib_path in concatenation (.) or string at 
/usr/bin/psql line 149.
+==17084== Memcheck, a memory error detector
+==17084== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17084== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17084== Command: /usr/lib/postgresql/13/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/auditor/drop.sql -q --set 
ON_ERROR_STOP=1
+==17084== 
+psql:/home/priscilla/install/share/taler/sql/auditor/drop.sql:23: NOTICE:  
drop cascades to 20 other objects
+DETAIL:  drop cascades to table auditor.auditor_exchanges
+drop cascades to table auditor.auditor_exchange_signkeys
+drop cascades to table auditor.auditor_progress_reserve
+drop cascades to table auditor.auditor_progress_purse
+drop cascades to table auditor.auditor_progress_aggregation
+drop cascades to table auditor.auditor_progress_deposit_confirmation
+drop cascades to table auditor.auditor_progress_coin
+drop cascades to table auditor.wire_auditor_account_progress
+drop cascades to table auditor.wire_auditor_progress
+drop cascades to table auditor.auditor_reserves
+drop cascades to table auditor.auditor_purses
+drop cascades to table auditor.auditor_purse_summary
+drop cascades to table auditor.auditor_reserve_balance
+drop cascades to table auditor.auditor_wire_fee_balance
+drop cascades to table auditor.auditor_denomination_pending
+drop cascades to table auditor.auditor_balance_summary
+drop cascades to table auditor.auditor_historic_denomination_revenue
+drop cascades to table auditor.auditor_historic_reserve_summary
+drop cascades to table auditor.deposit_confirmations
+drop cascades to table auditor.auditor_predicted_result
+==17084== 
+==17084== HEAP SUMMARY:
+==17084==     in use at exit: 2,651 bytes in 119 blocks
+==17084==   total heap usage: 1,769 allocs, 1,650 frees, 211,443 bytes 
allocated
+==17084== 
+==17084== LEAK SUMMARY:
+==17084==    definitely lost: 54 bytes in 2 blocks
+==17084==    indirectly lost: 58 bytes in 1 blocks
+==17084==      possibly lost: 0 bytes in 0 blocks
+==17084==    still reachable: 2,539 bytes in 116 blocks
+==17084==         suppressed: 0 bytes in 0 blocks
+==17084== Rerun with --leak-check=full to see details of leaked memory
+==17084== 
+==17084== For lists of detected and suppressed errors, rerun with: -s
+==17084== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17096== Memcheck, a memory error detector
+==17096== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17096== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17096== Command: /usr/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/auditor/auditor-0001.sql -q --set 
ON_ERROR_STOP=1
+==17096== 
+==17098== Memcheck, a memory error detector
+==17098== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17098== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17098== Command: /usr/bin/ldd /usr/lib/postgresql/13/bin/psql
+==17098== 
+==17100== 
+==17100== HEAP SUMMARY:
+==17100==     in use at exit: 73,062 bytes in 1,219 blocks
+==17100==   total heap usage: 2,918 allocs, 1,699 frees, 143,902 bytes 
allocated
+==17100== 
+==17100== LEAK SUMMARY:
+==17100==    definitely lost: 0 bytes in 0 blocks
+==17100==    indirectly lost: 0 bytes in 0 blocks
+==17100==      possibly lost: 0 bytes in 0 blocks
+==17100==    still reachable: 73,062 bytes in 1,219 blocks
+==17100==         suppressed: 0 bytes in 0 blocks
+==17100== Rerun with --leak-check=full to see details of leaked memory
+==17100== 
+==17100== For lists of detected and suppressed errors, rerun with: -s
+==17100== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17102== Memcheck, a memory error detector
+==17102== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17102== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17102== Command: /lib64/ld-linux-x86-64.so.2 --verify 
/usr/lib/postgresql/13/bin/psql
+==17102== 
+==17102== 
+==17102== HEAP SUMMARY:
+==17102==     in use at exit: 0 bytes in 0 blocks
+==17102==   total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+==17102== 
+==17102== All heap blocks were freed -- no leaks are possible
+==17102== 
+==17102== For lists of detected and suppressed errors, rerun with: -s
+==17102== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17104== 
+==17104== HEAP SUMMARY:
+==17104==     in use at exit: 80,819 bytes in 1,401 blocks
+==17104==   total heap usage: 3,611 allocs, 2,210 frees, 192,542 bytes 
allocated
+==17104== 
+==17104== LEAK SUMMARY:
+==17104==    definitely lost: 0 bytes in 0 blocks
+==17104==    indirectly lost: 0 bytes in 0 blocks
+==17104==      possibly lost: 0 bytes in 0 blocks
+==17104==    still reachable: 80,819 bytes in 1,401 blocks
+==17104==         suppressed: 0 bytes in 0 blocks
+==17104== Rerun with --leak-check=full to see details of leaked memory
+==17104== 
+==17104== For lists of detected and suppressed errors, rerun with: -s
+==17104== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17103== 
+==17103== HEAP SUMMARY:
+==17103==     in use at exit: 77,682 bytes in 1,300 blocks
+==17103==   total heap usage: 3,266 allocs, 1,966 frees, 181,008 bytes 
allocated
+==17103== 
+==17103== LEAK SUMMARY:
+==17103==    definitely lost: 0 bytes in 0 blocks
+==17103==    indirectly lost: 0 bytes in 0 blocks
+==17103==      possibly lost: 0 bytes in 0 blocks
+==17103==    still reachable: 77,682 bytes in 1,300 blocks
+==17103==         suppressed: 0 bytes in 0 blocks
+==17103== Rerun with --leak-check=full to see details of leaked memory
+==17103== 
+==17103== For lists of detected and suppressed errors, rerun with: -s
+==17103== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17098== 
+==17098== HEAP SUMMARY:
+==17098==     in use at exit: 76,005 bytes in 1,015 blocks
+==17098==   total heap usage: 3,122 allocs, 2,107 frees, 167,015 bytes 
allocated
+==17098== 
+==17098== LEAK SUMMARY:
+==17098==    definitely lost: 0 bytes in 0 blocks
+==17098==    indirectly lost: 0 bytes in 0 blocks
+==17098==      possibly lost: 0 bytes in 0 blocks
+==17098==    still reachable: 76,005 bytes in 1,015 blocks
+==17098==         suppressed: 0 bytes in 0 blocks
+==17098== Rerun with --leak-check=full to see details of leaked memory
+==17098== 
+==17098== For lists of detected and suppressed errors, rerun with: -s
+==17098== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Use of uninitialized value $lib_path in concatenation (.) or string at 
/usr/bin/psql line 149.
+==17096== Memcheck, a memory error detector
+==17096== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17096== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17096== Command: /usr/lib/postgresql/13/bin/psql postgres:///talercheck -f 
/home/priscilla/install/share/taler//sql/auditor/auditor-0001.sql -q --set 
ON_ERROR_STOP=1
+==17096== 
+==17096== 
+==17096== HEAP SUMMARY:
+==17096==     in use at exit: 2,915 bytes in 119 blocks
+==17096==   total heap usage: 2,948 allocs, 2,829 frees, 290,488 bytes 
allocated
+==17096== 
+==17096== LEAK SUMMARY:
+==17096==    definitely lost: 54 bytes in 2 blocks
+==17096==    indirectly lost: 66 bytes in 1 blocks
+==17096==      possibly lost: 0 bytes in 0 blocks
+==17096==    still reachable: 2,795 bytes in 116 blocks
+==17096==         suppressed: 0 bytes in 0 blocks
+==17096== Rerun with --leak-check=full to see details of leaked memory
+==17096== 
+==17096== For lists of detected and suppressed errors, rerun with: -s
+==17096== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17081== 
+==17081== HEAP SUMMARY:
+==17081==     in use at exit: 5,285 bytes in 26 blocks
+==17081==   total heap usage: 3,582 allocs, 3,556 frees, 393,367 bytes 
allocated
+==17081== 
+==17081== LEAK SUMMARY:
+==17081==    definitely lost: 0 bytes in 0 blocks
+==17081==    indirectly lost: 0 bytes in 0 blocks
+==17081==      possibly lost: 0 bytes in 0 blocks
+==17081==    still reachable: 5,285 bytes in 26 blocks
+==17081==         suppressed: 0 bytes in 0 blocks
+==17081== Rerun with --leak-check=full to see details of leaked memory
+==17081== 
+==17081== For lists of detected and suppressed errors, rerun with: -s
+==17081== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17109== Memcheck, a memory error detector
+==17109== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17109== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17109== Command: /home/priscilla/install/bin/taler-auditor-exchange -c 
test_merchant_api-cs.conf -u http://localhost:8081/ -m 
T1VVFQZZARQ1CMF4BN58EE7SKTW5AV2BS18S87ZEGYS4S29J6DNG
+==17109== 
+==17109== 
+==17109== HEAP SUMMARY:
+==17109==     in use at exit: 23,112 bytes in 673 blocks
+==17109==   total heap usage: 3,463 allocs, 2,790 frees, 375,452 bytes 
allocated
+==17109== 
+==17109== LEAK SUMMARY:
+==17109==    definitely lost: 0 bytes in 0 blocks
+==17109==    indirectly lost: 0 bytes in 0 blocks
+==17109==      possibly lost: 0 bytes in 0 blocks
+==17109==    still reachable: 23,112 bytes in 673 blocks
+==17109==         suppressed: 0 bytes in 0 blocks
+==17109== Rerun with --leak-check=full to see details of leaked memory
+==17109== 
+==17109== For lists of detected and suppressed errors, rerun with: -s
+==17109== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+Waiting for `taler-merchant-httpd' to be ready
+.
+==17112== Memcheck, a memory error detector
+==17112== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17112== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17112== Command: /home/priscilla/install/bin/taler-merchant-httpd --log=INFO 
-c test_merchant_api-cs.conf
+==17112== 
+==17113== Memcheck, a memory error detector
+==17113== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17113== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17113== Command: /bin/sh -c wget\ -q\ -t\ 1\ -T\ 1\ 
--header='Authorization:\ ApiKey\ sandbox'\ http://localhost:8080/\ -o\ 
/dev/null\ -O\ /dev/null
+==17113== 
+2023-02-06T08:39:33.155878-0500 taler-merchant-httpd-17112 INFO Starting 
taler-merchant-httpd
+==17114== Memcheck, a memory error detector
+==17114== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17114== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17114== Command: /usr/bin/wget -q -t 1 -T 1 --header=Authorization:\ ApiKey\ 
sandbox http://localhost:8080/ -o /dev/null -O /dev/null
+==17114== 
+==17114== 
+==17114== HEAP SUMMARY:
+==17114==     in use at exit: 862 bytes in 17 blocks
+==17114==   total heap usage: 1,531 allocs, 1,514 frees, 162,753 bytes 
allocated
+==17114== 
+==17114== LEAK SUMMARY:
+==17114==    definitely lost: 0 bytes in 0 blocks
+==17114==    indirectly lost: 0 bytes in 0 blocks
+==17114==      possibly lost: 0 bytes in 0 blocks
+==17114==    still reachable: 862 bytes in 17 blocks
+==17114==         suppressed: 0 bytes in 0 blocks
+==17114== Rerun with --leak-check=full to see details of leaked memory
+==17114== 
+==17114== For lists of detected and suppressed errors, rerun with: -s
+==17114== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17113== 
+==17113== HEAP SUMMARY:
+==17113==     in use at exit: 1,706 bytes in 49 blocks
+==17113==   total heap usage: 53 allocs, 4 frees, 2,882 bytes allocated
+==17113== 
+==17113== LEAK SUMMARY:
+==17113==    definitely lost: 0 bytes in 0 blocks
+==17113==    indirectly lost: 0 bytes in 0 blocks
+==17113==      possibly lost: 0 bytes in 0 blocks
+==17113==    still reachable: 1,706 bytes in 49 blocks
+==17113==         suppressed: 0 bytes in 0 blocks
+==17113== Rerun with --leak-check=full to see details of leaked memory
+==17113== 
+==17113== For lists of detected and suppressed errors, rerun with: -s
+==17113== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+.
+==17116== Memcheck, a memory error detector
+==17116== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17116== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17116== Command: /bin/sh -c wget\ -q\ -t\ 1\ -T\ 1\ 
--header='Authorization:\ ApiKey\ sandbox'\ http://localhost:8080/\ -o\ 
/dev/null\ -O\ /dev/null
+==17116== 
+==17117== Memcheck, a memory error detector
+==17117== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17117== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17117== Command: /usr/bin/wget -q -t 1 -T 1 --header=Authorization:\ ApiKey\ 
sandbox http://localhost:8080/ -o /dev/null -O /dev/null
+==17117== 
+==17117== 
+==17117== HEAP SUMMARY:
+==17117==     in use at exit: 862 bytes in 17 blocks
+==17117==   total heap usage: 1,531 allocs, 1,514 frees, 162,753 bytes 
allocated
+==17117== 
+==17117== LEAK SUMMARY:
+==17117==    definitely lost: 0 bytes in 0 blocks
+==17117==    indirectly lost: 0 bytes in 0 blocks
+==17117==      possibly lost: 0 bytes in 0 blocks
+==17117==    still reachable: 862 bytes in 17 blocks
+==17117==         suppressed: 0 bytes in 0 blocks
+==17117== Rerun with --leak-check=full to see details of leaked memory
+==17117== 
+==17117== For lists of detected and suppressed errors, rerun with: -s
+==17117== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17116== 
+==17116== HEAP SUMMARY:
+==17116==     in use at exit: 1,706 bytes in 49 blocks
+==17116==   total heap usage: 53 allocs, 4 frees, 2,882 bytes allocated
+==17116== 
+==17116== LEAK SUMMARY:
+==17116==    definitely lost: 0 bytes in 0 blocks
+==17116==    indirectly lost: 0 bytes in 0 blocks
+==17116==      possibly lost: 0 bytes in 0 blocks
+==17116==    still reachable: 1,706 bytes in 49 blocks
+==17116==         suppressed: 0 bytes in 0 blocks
+==17116== Rerun with --leak-check=full to see details of leaked memory
+==17116== 
+==17116== For lists of detected and suppressed errors, rerun with: -s
+==17116== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+.
+==17118== Memcheck, a memory error detector
+==17118== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17118== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17118== Command: /bin/sh -c wget\ -q\ -t\ 1\ -T\ 1\ 
--header='Authorization:\ ApiKey\ sandbox'\ http://localhost:8080/\ -o\ 
/dev/null\ -O\ /dev/null
+==17118== 
+2023-02-06T08:39:39.730771-0500 taler-merchant-httpd-17112 INFO Exchange given 
in section `merchant-exchange-kudos' is for another currency. Skipping.
+2023-02-06T08:39:39.749536-0500 taler-merchant-httpd-17112 INFO Auditor given 
in section `merchant-auditor-kudos' is for another currency. Skipping.
+==17120== Memcheck, a memory error detector
+==17120== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17120== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17120== Command: /usr/bin/wget -q -t 1 -T 1 --header=Authorization:\ ApiKey\ 
sandbox http://localhost:8080/ -o /dev/null -O /dev/null
+==17120== 
+2023-02-06T08:39:39.921419-0500 taler-merchant-httpd-17112 INFO Change in PQ 
event FD to -1
+2023-02-06T08:39:39.922124-0500 taler-merchant-httpd-17112 INFO New poll FD is 
-1
+2023-02-06T08:39:40.119545-0500 taler-merchant-httpd-17112 INFO Change in PQ 
event FD to 20
+2023-02-06T08:39:40.119816-0500 taler-merchant-httpd-17112 INFO New poll FD is 
20
+2023-02-06T08:39:40.185743-0500 taler-merchant-httpd-17112 INFO Starting event 
scheduler
+2023-02-06T08:39:40.186188-0500 taler-merchant-httpd-17112 INFO New poll FD is 
20
+2023-02-06T08:39:40.186724-0500 taler-merchant-httpd-17112 INFO Activating 
poll job on 20
+2023-02-06T08:39:40.190861-0500 taler-merchant-httpd-17112 INFO Executing PQ 
command `LISTEN XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0'
+2023-02-06T08:39:40.193374-0500 taler-merchant-httpd-17112 INFO Received 
instance settings notification: reload `(null)'
+2023-02-06T08:39:40.237387-0500 taler-merchant-httpd-17112 INFO PG poll job 
active
+2023-02-06T08:39:40.239408-0500 taler-merchant-httpd-17112 INFO PG poll job 
finishes after 0 events
+2023-02-06T08:39:40.239975-0500 taler-merchant-httpd-17112 INFO Resubscribing
+2023-02-06T08:39:40.573042-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:39:40.577265-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:39:40.579110-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T08:39:40.600735-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:39:40.600960-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:39:40.601170-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T08:39:40.607289-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:39:40.607458-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:39:40.607610-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T08:39:40.620053-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:39:40.620222-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:39:40.620375-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T08:39:40.649006-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:39:40.649183-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:39:40.649335-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T08:39:40.712715-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:39:40.712889-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:39:40.713042-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T08:39:40.850413-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:39:40.850623-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:39:40.850784-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T08:39:41.002790-0500 
taler-merchant-httpd-17112(0PE934J6W1RQF2N7ERCKXJP1CG) INFO Handling request 
(GET) for URL '/'
+2023-02-06T08:39:41.046279-0500 
taler-merchant-httpd-17112(0PE934J6W1RQF2N7ERCKXJP1CG) INFO Finished handling 
request for `/' with MHD termination code 0
+2023-02-06T08:39:41.076070-0500 
taler-merchant-httpd-17112(5CAEB0DNJX4J7SJMJKS7GK1WB8) INFO Handling request 
(GET) for URL '/webui/'
+2023-02-06T08:39:41.084548-0500 
taler-merchant-httpd-17112(5CAEB0DNJX4J7SJMJKS7GK1WB8) INFO Finished handling 
request for `/webui/' with MHD termination code 0
+==17120== 
+==17120== HEAP SUMMARY:
+==17120==     in use at exit: 1,995 bytes in 34 blocks
+==17120==   total heap usage: 1,596 allocs, 1,562 frees, 179,062 bytes 
allocated
+==17120== 
+==17120== LEAK SUMMARY:
+==17120==    definitely lost: 0 bytes in 0 blocks
+==17120==    indirectly lost: 0 bytes in 0 blocks
+==17120==      possibly lost: 0 bytes in 0 blocks
+==17120==    still reachable: 1,995 bytes in 34 blocks
+==17120==         suppressed: 0 bytes in 0 blocks
+==17120== Rerun with --leak-check=full to see details of leaked memory
+==17120== 
+==17120== For lists of detected and suppressed errors, rerun with: -s
+==17120== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:39:41.187402-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:39:41.187591-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:39:41.187745-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+==17118== 
+==17118== HEAP SUMMARY:
+==17118==     in use at exit: 1,706 bytes in 49 blocks
+==17118==   total heap usage: 53 allocs, 4 frees, 2,882 bytes allocated
+==17118== 
+==17118== LEAK SUMMARY:
+==17118==    definitely lost: 0 bytes in 0 blocks
+==17118==    indirectly lost: 0 bytes in 0 blocks
+==17118==      possibly lost: 0 bytes in 0 blocks
+==17118==    still reachable: 1,706 bytes in 49 blocks
+==17118==         suppressed: 0 bytes in 0 blocks
+==17118== Rerun with --leak-check=full to see details of leaked memory
+==17118== 
+==17118== For lists of detected and suppressed errors, rerun with: -s
+==17118== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+
+==17123== Memcheck, a memory error detector
+==17123== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17123== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17123== Command: /home/priscilla/install/bin//taler-exchange-secmod-eddsa -c 
test_merchant_api-cs.conf -L INFO
+==17123== 
+==17124== Memcheck, a memory error detector
+==17124== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17124== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17124== Command: /home/priscilla/install/bin//taler-exchange-secmod-rsa -c 
test_merchant_api-cs.conf -L INFO
+==17124== 
+==17125== Memcheck, a memory error detector
+==17125== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17125== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17125== Command: /home/priscilla/install/bin//taler-exchange-secmod-cs -c 
test_merchant_api-cs.conf -L INFO
+==17125== 
+==17126== Memcheck, a memory error detector
+==17126== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17126== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17126== Command: /home/priscilla/install/bin/taler-exchange-httpd -L INFO -a 
-c test_merchant_api-cs.conf
+==17126== 
+2023-02-06T08:39:42.003947-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:39:42.004223-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:39:42.004451-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+==17127== Memcheck, a memory error detector
+==17127== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17127== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17127== Command: /bin/sh -c wget\ -q\ -t\ 1\ -T\ 1\ 
http://localhost:8081/seed\ -o\ /dev/null\ -O\ /dev/null
+==17127== 
+2023-02-06T08:39:42.849320-0500 taler-exchange-httpd-17126 INFO Launching 
exchange with public key `HGYF3P'...
+2023-02-06T08:39:42.869171-0500 taler-exchange-secmod-eddsa-17123 INFO Setup 
fresh private key in 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-eddsa/keys/1675690782'
+2023-02-06T08:39:42.982745-0500 taler-exchange-secmod-eddsa-17123 INFO Setup 
fresh private key in 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-eddsa/keys/1682948082'
+2023-02-06T08:39:42.987458-0500 taler-exchange-secmod-eddsa-17123 INFO Setup 
fresh private key in 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-eddsa/keys/1690205382'
+2023-02-06T08:39:42.990250-0500 taler-exchange-secmod-eddsa-17123 INFO Setup 
fresh private key in 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-eddsa/keys/1697462682'
+2023-02-06T08:39:42.993063-0500 taler-exchange-secmod-eddsa-17123 INFO Setup 
fresh private key in 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-eddsa/keys/1704719982'
+2023-02-06T08:39:43.029520-0500 taler-exchange-httpd-17126 INFO Change in PQ 
event FD to -1
+2023-02-06T08:39:43.032005-0500 taler-exchange-httpd-17126 INFO New poll FD is 
-1
+2023-02-06T08:39:43.171933-0500 taler-exchange-httpd-17126 INFO Change in PQ 
event FD to 12
+2023-02-06T08:39:43.172206-0500 taler-exchange-httpd-17126 INFO New poll FD is 
12
+2023-02-06T08:39:43.187495-0500 taler-exchange-httpd-17126 INFO Starting event 
scheduler
+2023-02-06T08:39:43.187880-0500 taler-exchange-httpd-17126 INFO New poll FD is 
12
+2023-02-06T08:39:43.188395-0500 taler-exchange-httpd-17126 INFO Activating 
poll job on 12
+2023-02-06T08:39:43.192969-0500 taler-exchange-httpd-17126 INFO Executing PQ 
command `LISTEN X6R9RKN23RNHRPK11GT4NDJZKAK8DX1V4AWCTN6RQV5MKDT818K4G'
+2023-02-06T08:39:43.195960-0500 taler-exchange-httpd-17126 INFO Executing PQ 
command `LISTEN XRE2709K6TYDBVARD9Y5SCZY7VHE4D5DKF0R8DHQ4X5T13E8X2X60'
+2023-02-06T08:39:43.202547-0500 taler-exchange-httpd-17126 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/tos//en/tos-v0.epub'
+2023-02-06T08:39:43.282898-0500 taler-exchange-httpd-17126 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/tos//en/tos-v0.md'
+2023-02-06T08:39:43.296290-0500 taler-exchange-httpd-17126 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/tos//en/tos-v0.pdf'
+==17160== Memcheck, a memory error detector
+==17160== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17160== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17160== Command: /usr/bin/wget -q -t 1 -T 1 http://localhost:8081/seed -o 
/dev/null -O /dev/null
+==17160== 
+2023-02-06T08:39:43.349443-0500 taler-exchange-httpd-17126 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/tos//en/tos-v0.xml'
+2023-02-06T08:39:43.364290-0500 taler-exchange-httpd-17126 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/tos//en/tos-v0.txt'
+2023-02-06T08:39:43.373531-0500 taler-exchange-httpd-17126 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/tos//en/tos-v0.html'
+2023-02-06T08:39:43.312942-0500 taler-exchange-secmod-rsa-17124 WARNING No RSA 
denominations configured
+2023-02-06T08:39:43.320237-0500 taler-exchange-secmod-cs-17125 INFO Loading 
keys for denomination coin_eur_5
+2023-02-06T08:39:43.525261-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 1FQ1YVGH from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1706678017'
+2023-02-06T08:39:43.532838-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 7NEATPW9 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1703051017'
+2023-02-06T08:39:43.537227-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key GEERKG2F from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1677057517'
+2023-02-06T08:39:43.541795-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key SKCHYFB8 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1683707017'
+2023-02-06T08:39:43.546146-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key BQH4V4FJ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1680684517'
+2023-02-06T08:39:43.550546-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 7TA14R36 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1692774517'
+2023-02-06T08:39:43.554881-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key X2H5VR7R from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1692170017'
+2023-02-06T08:39:43.559226-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 6N2P456C from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1680080017'
+2023-02-06T08:39:43.563557-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 9E5Y12XK from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1679475517'
+2023-02-06T08:39:43.568347-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key Y9C2ENMN from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1702446517'
+2023-02-06T08:39:43.572694-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key J7XGY3JB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1676453017'
+2023-02-06T08:39:43.577046-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 99MVDFSB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1698215017'
+2023-02-06T08:39:43.581377-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 42278A6A from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1685520517'
+2023-02-06T08:39:43.585787-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 0873V44G from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1697006017'
+2023-02-06T08:39:43.590184-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 3XT18ZQM from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1695797017'
+2023-02-06T08:39:43.594653-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key NABR9NEM from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1687938517'
+2023-02-06T08:39:43.598987-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 3G8YKGDZ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1682498017'
+2023-02-06T08:39:43.603377-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 0TNFW880 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1686729517'
+2023-02-06T08:39:43.607702-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key BMMSQP4W from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1693379017'
+2023-02-06T08:39:43.612038-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key EW528A72 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1675244017'
+2023-02-06T08:39:43.616423-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 2Z5WBE1Y from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1684916017'
+2023-02-06T08:39:43.620762-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key MFYBSS0B from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1691565517'
+2023-02-06T08:39:43.625175-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 77X4WJTF from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1701842017'
+2023-02-06T08:39:43.630006-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key RJR3RN6V from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1678266517'
+2023-02-06T08:39:43.634421-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key KAHY3QBE from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1688543017'
+2023-02-06T08:39:43.638784-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key QXBKNKCW from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1697610517'
+2023-02-06T08:39:43.643186-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key W8REVV63 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1695192517'
+2023-02-06T08:39:43.647753-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key K31Z9EHZ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1677662017'
+2023-02-06T08:39:43.652161-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key PQK9DW0J from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1683102517'
+2023-02-06T08:39:43.656560-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key G9CYRY0G from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1689147517'
+2023-02-06T08:39:43.661005-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key HV7NE0CE from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1690961017'
+2023-02-06T08:39:43.662997-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:39:43.663191-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:39:43.663346-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T08:39:43.665618-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 6V7X34X1 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1696401517'
+2023-02-06T08:39:43.670093-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key RX3HGJPP from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1694588017'
+2023-02-06T08:39:43.674542-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key JEM5B57M from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1678871017'
+2023-02-06T08:39:43.678945-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 1HEBMHQB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1700028517'
+2023-02-06T08:39:43.683350-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key VDHB19ZQ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1687334017'
+2023-02-06T08:39:43.687751-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key MTBGBYJN from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1675848517'
+2023-02-06T08:39:43.692227-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key PQM7A33J from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1703655517'
+2023-02-06T08:39:43.696667-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 8QFSDJD5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1701237517'
+2023-02-06T08:39:43.701075-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key GF8NWX2R from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1693983517'
+2023-02-06T08:39:43.705460-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key TPEA99F5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1681893517'
+2023-02-06T08:39:43.709853-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 67RBHN8A from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1704864517'
+2023-02-06T08:39:43.714182-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key WMY0J01S from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1704260017'
+2023-02-06T08:39:43.718594-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 5FTMD5S9 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1684311517'
+2023-02-06T08:39:43.722948-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 56CANKFY from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1706073517'
+2023-02-06T08:39:43.727371-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 6CXV715K from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1689752017'
+2023-02-06T08:39:43.731715-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key C01QDVM8 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1690356517'
+2023-02-06T08:39:43.736113-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 0C90WJFB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1699424017'
+2023-02-06T08:39:43.740546-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key VHRZ65AV from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1705469017'
+2023-02-06T08:39:43.743908-0500 taler-exchange-httpd-17126 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/pp//en/pp-v0.xml'
+2023-02-06T08:39:43.744999-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 4CGGRE8B from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1681289017'
+2023-02-06T08:39:43.749401-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 7VDVMFPK from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1698819517'
+2023-02-06T08:39:43.750813-0500 taler-exchange-httpd-17126 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/pp//en/pp-v0.epub'
+2023-02-06T08:39:43.753735-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key F6ZNCY50 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1686125017'
+2023-02-06T08:39:43.758076-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 0QAXT1R4 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1700633017'
+2023-02-06T08:39:43.758397-0500 taler-exchange-httpd-17126 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/pp//en/pp-v0.html'
+2023-02-06T08:39:43.762634-0500 taler-exchange-secmod-cs-17125 INFO Updating 
keys of denomination `coin_eur_5', last key 1FQ1YVGH valid for another 365 days
+2023-02-06T08:39:43.765190-0500 taler-exchange-secmod-cs-17125 INFO Loading 
keys for denomination coin_eur_1
+2023-02-06T08:39:43.769805-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key A7AETFXH from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1706678017'
+2023-02-06T08:39:43.774236-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key BQ4C9GMT from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1703051017'
+2023-02-06T08:39:43.778781-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key SJJ50R2X from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1677057517'
+2023-02-06T08:39:43.783290-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 83NKZQ1K from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1683707017'
+2023-02-06T08:39:43.787610-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 7SAECQRC from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1680684517'
+2023-02-06T08:39:43.792001-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key QEX06NVS from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1692774517'
+2023-02-06T08:39:43.796385-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key C23FR09P from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1692170017'
+2023-02-06T08:39:43.800784-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key Z7ZRATSG from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1680080017'
+2023-02-06T08:39:43.805138-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key ST24V7W9 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1679475517'
+2023-02-06T08:39:43.809523-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key TSHSRX35 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1702446517'
+2023-02-06T08:39:43.813861-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key P4JAYQ28 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1676453017'
+2023-02-06T08:39:43.818244-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key BKGPS6D4 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1698215017'
+2023-02-06T08:39:43.822648-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key MNDDK5R1 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1685520517'
+2023-02-06T08:39:43.826980-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key ES56PW6T from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1697006017'
+2023-02-06T08:39:43.831312-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key H9EHNAM5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1695797017'
+2023-02-06T08:39:43.835700-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key EC835AW5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1687938517'
+2023-02-06T08:39:43.840157-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key FK1NXT7G from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1682498017'
+2023-02-06T08:39:43.844702-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 4YWJKR95 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1686729517'
+2023-02-06T08:39:43.849067-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key NXNYQKAQ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1693379017'
+2023-02-06T08:39:43.853398-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key XJMFT3QF from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1675244017'
+2023-02-06T08:39:43.857788-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key YXXKPS80 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1684916017'
+2023-02-06T08:39:43.862108-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 22JMT3BQ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1691565517'
+2023-02-06T08:39:43.866530-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key HZ734SYP from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1701842017'
+2023-02-06T08:39:43.870948-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 4F2DH4G5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1678266517'
+2023-02-06T08:39:43.875286-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key DD2VMX6J from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1688543017'
+2023-02-06T08:39:43.879667-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key HXXAPD00 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1697610517'
+2023-02-06T08:39:43.884021-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key QZX8W10Y from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1695192517'
+2023-02-06T08:39:43.888356-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 94CJQP7T from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1677662017'
+2023-02-06T08:39:43.892735-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 1FKD64YY from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1683102517'
+2023-02-06T08:39:43.897134-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key R9G5VSEZ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1689147517'
+2023-02-06T08:39:43.901519-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key MDMNDHS6 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1690961017'
+2023-02-06T08:39:43.905847-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 8FDG0NWX from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1696401517'
+2023-02-06T08:39:43.910233-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key SKZ04GZV from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1694588017'
+2023-02-06T08:39:43.914629-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key KAFT0J59 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1678871017'
+2023-02-06T08:39:43.919064-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key SDR7CSF8 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1700028517'
+2023-02-06T08:39:43.923622-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key ZQQP5796 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1687334017'
+2023-02-06T08:39:43.927972-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key K87W7J5C from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1675848517'
+2023-02-06T08:39:43.932320-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key T3MPV2KW from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1703655517'
+2023-02-06T08:39:43.936709-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 4BZMQ9BH from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1701237517'
+2023-02-06T08:39:43.941037-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key T6XCN05P from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1693983517'
+2023-02-06T08:39:43.945438-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 891291QA from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1681893517'
+2023-02-06T08:39:43.949776-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key T26G5A0C from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1704864517'
+2023-02-06T08:39:43.954166-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 2ZTVE2MT from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1704260017'
+2023-02-06T08:39:43.958543-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key H3T838QD from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1684311517'
+2023-02-06T08:39:43.962951-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key SZDKF869 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1706073517'
+2023-02-06T08:39:43.967292-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 25G0F5KD from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1689752017'
+2023-02-06T08:39:43.971682-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key ZQTAG30D from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1690356517'
+2023-02-06T08:39:43.976018-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 567Y3VYF from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1699424017'
+2023-02-06T08:39:43.980410-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 0A03DMFT from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1705469017'
+2023-02-06T08:39:43.984740-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key K9RQ5K5P from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1681289017'
+2023-02-06T08:39:43.989073-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key JSKC0R41 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1698819517'
+2023-02-06T08:39:43.993458-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key AVXQWRE7 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1686125017'
+2023-02-06T08:39:43.997865-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 9EYGPK1E from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1700633017'
+2023-02-06T08:39:43.998444-0500 taler-exchange-secmod-cs-17125 INFO Updating 
keys of denomination `coin_eur_1', last key A7AETFXH valid for another 365 days
+2023-02-06T08:39:43.999317-0500 taler-exchange-secmod-cs-17125 INFO Loading 
keys for denomination coin_eur_ct_10
+2023-02-06T08:39:44.003888-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 2B468NCN from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1706678017'
+2023-02-06T08:39:44.009321-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key K1J4DVPR from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1703051017'
+2023-02-06T08:39:44.013661-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key Y9JFK8Q7 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1677057517'
+2023-02-06T08:39:44.018059-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key GSRQJ50J from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1683707017'
+2023-02-06T08:39:44.025924-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 2TNPZ8EY from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1680684517'
+2023-02-06T08:39:44.030394-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key A4WBC98G from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1692774517'
+2023-02-06T08:39:44.035025-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key V8F6PR1K from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1692170017'
+2023-02-06T08:39:44.039485-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key W9HH1N7W from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1680080017'
+2023-02-06T08:39:44.043881-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 3YRT7NAC from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1679475517'
+2023-02-06T08:39:44.048276-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 8KSZ012E from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1702446517'
+2023-02-06T08:39:44.052670-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key ZS21B83R from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1676453017'
+2023-02-06T08:39:44.057061-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key TYZH9WR2 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1698215017'
+2023-02-06T08:39:44.061461-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key C3WM9ZJH from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1685520517'
+2023-02-06T08:39:44.065999-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 6T0NPFE5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1697006017'
+2023-02-06T08:39:44.070975-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key DJWX5THB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1695797017'
+2023-02-06T08:39:44.075442-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key FBZZ696F from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1687938517'
+2023-02-06T08:39:44.079824-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key SJ9FC90C from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1682498017'
+2023-02-06T08:39:44.084192-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key BW1EXZBQ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1686729517'
+2023-02-06T08:39:44.088581-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key P3W1EWYM from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1693379017'
+2023-02-06T08:39:44.092904-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 1GHAW81F from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1675244017'
+2023-02-06T08:39:44.097357-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 4K0PWB1A from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1684916017'
+2023-02-06T08:39:44.101704-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key BW58WNNC from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1691565517'
+2023-02-06T08:39:44.106087-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key GDN13SQP from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1701842017'
+2023-02-06T08:39:44.110483-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key KE6PZTPN from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1678266517'
+2023-02-06T08:39:44.114874-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key ED9QBE10 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1688543017'
+2023-02-06T08:39:44.119206-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key S2X5WFFN from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1697610517'
+2023-02-06T08:39:44.123608-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key TZ8EAYS5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1695192517'
+2023-02-06T08:39:44.124080-0500 taler-exchange-httpd-17126 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/pp//en/pp-v0.md'
+2023-02-06T08:39:44.128039-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 822EJGJB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1677662017'
+2023-02-06T08:39:44.129197-0500 taler-exchange-httpd-17126 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/pp//en/pp-v0.txt'
+2023-02-06T08:39:44.132466-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key TECN7R7J from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1683102517'
+2023-02-06T08:39:44.134239-0500 taler-exchange-httpd-17126 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/pp//en/pp-v0.pdf'
+2023-02-06T08:39:44.136796-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key GT1C1K81 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1689147517'
+2023-02-06T08:39:44.141187-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key QSA1562V from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1690961017'
+2023-02-06T08:39:44.145524-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 5D50XCQK from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1696401517'
+2023-02-06T08:39:44.149926-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 5D9J81KM from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1694588017'
+2023-02-06T08:39:44.154263-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key XZNHNMZB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1678871017'
+2023-02-06T08:39:44.158671-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key N5AW88W9 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1700028517'
+2023-02-06T08:39:44.163013-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key ACY1AXK4 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1687334017'
+2023-02-06T08:39:44.167404-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key HEB1FFF6 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1675848517'
+2023-02-06T08:39:44.171751-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 6AXJ4NNA from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1703655517'
+2023-02-06T08:39:44.176130-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 6WMHZ8F0 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1701237517'
+2023-02-06T08:39:44.180464-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key QCQBT54Y from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1693983517'
+2023-02-06T08:39:44.184796-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key G786QPSA from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1681893517'
+2023-02-06T08:39:44.189181-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key WV34P5EM from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1704864517'
+2023-02-06T08:39:44.193527-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key WH8CYXT5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1704260017'
+2023-02-06T08:39:44.197934-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key QV3KKTN3 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1684311517'
+2023-02-06T08:39:44.202413-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key ESS4M3C9 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1706073517'
+2023-02-06T08:39:44.205894-0500 taler-exchange-httpd-17126 INFO PG poll job 
active
+2023-02-06T08:39:44.206905-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key JXBDN4WA from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1689752017'
+2023-02-06T08:39:44.207861-0500 taler-exchange-httpd-17126 INFO PG poll job 
finishes after 0 events
+2023-02-06T08:39:44.208427-0500 taler-exchange-httpd-17126 INFO Resubscribing
+2023-02-06T08:39:44.211305-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key Z09WBTX3 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1690356517'
+2023-02-06T08:39:44.215695-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key WDPWHXZV from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1699424017'
+2023-02-06T08:39:44.220115-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key JCPVQMZ7 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1705469017'
+2023-02-06T08:39:44.224492-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 9CGT4HS8 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1681289017'
+2023-02-06T08:39:44.229448-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key M4RXJMYQ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1698819517'
+2023-02-06T08:39:44.235624-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key DWGM5ZG3 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1686125017'
+2023-02-06T08:39:44.240039-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key T77WC2VC from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1700633017'
+2023-02-06T08:39:44.240351-0500 taler-exchange-secmod-cs-17125 INFO Updating 
keys of denomination `coin_eur_ct_10', last key 2B468NCN valid for another 365 
days
+2023-02-06T08:39:44.240603-0500 taler-exchange-secmod-cs-17125 INFO Loading 
keys for denomination coin_eur_ct_1
+2023-02-06T08:39:44.246545-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key AMKH6XA7 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1706678017'
+2023-02-06T08:39:44.250924-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key THHWXC1T from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1703051017'
+2023-02-06T08:39:44.255317-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key B2HHD9NH from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1677057517'
+2023-02-06T08:39:44.259675-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 6FZ6YY3Z from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1683707017'
+2023-02-06T08:39:44.264075-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key E3YKJN1Q from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1680684517'
+2023-02-06T08:39:44.268444-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key HXD2F8NV from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1692774517'
+2023-02-06T08:39:44.272824-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key TK6XPZYV from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1692170017'
+2023-02-06T08:39:44.277189-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key B21XQMF4 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1680080017'
+2023-02-06T08:39:44.281588-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key NHCTNY39 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1679475517'
+2023-02-06T08:39:44.286009-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key BNPZEFNM from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1702446517'
+2023-02-06T08:39:44.290390-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key F2EWTKD3 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1676453017'
+2023-02-06T08:39:44.294797-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key KSR74W5Q from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1698215017'
+2023-02-06T08:39:44.299248-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key ZFCCB4NP from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1685520517'
+2023-02-06T08:39:44.303698-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 7AWENDKW from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1697006017'
+2023-02-06T08:39:44.308118-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key ZBE6JJVS from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1695797017'
+2023-02-06T08:39:44.312511-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 5E8D6NWR from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1687938517'
+2023-02-06T08:39:44.316896-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key S2T4307C from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1682498017'
+2023-02-06T08:39:44.321286-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 6AMMV375 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1686729517'
+2023-02-06T08:39:44.325682-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key DDD28W23 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1693379017'
+2023-02-06T08:39:44.330062-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 0HBYZESC from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1675244017'
+2023-02-06T08:39:44.334442-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 0Z5ASDD1 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1684916017'
+2023-02-06T08:39:44.338827-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 36R5CB4N from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1691565517'
+2023-02-06T08:39:44.343288-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key RR7S5ERY from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1701842017'
+2023-02-06T08:39:44.347690-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key P6HYWD63 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1678266517'
+2023-02-06T08:39:44.352087-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key S6Q790SJ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1688543017'
+2023-02-06T08:39:44.356487-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 3WQFXHPZ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1697610517'
+2023-02-06T08:39:44.360876-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 6QFYM0ZX from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1695192517'
+2023-02-06T08:39:44.365206-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key PEEX5AR0 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1677662017'
+2023-02-06T08:39:44.369551-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key C7330F6E from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1683102517'
+2023-02-06T08:39:44.373957-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 26JXP8RT from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1689147517'
+2023-02-06T08:39:44.378285-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 350DC33S from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1690961017'
+2023-02-06T08:39:44.382699-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 0YN0G3GQ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1696401517'
+2023-02-06T08:39:44.387043-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key QTFTJRZ5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1694588017'
+2023-02-06T08:39:44.391434-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key PEYA8W42 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1678871017'
+2023-02-06T08:39:44.395868-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key HPVNVRJ2 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1700028517'
+2023-02-06T08:39:44.400233-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 8F542D0D from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1687334017'
+2023-02-06T08:39:44.404622-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key GGDHX9HW from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1675848517'
+2023-02-06T08:39:44.408954-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 77HS2480 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1703655517'
+2023-02-06T08:39:44.413346-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key VBRXFKDT from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1701237517'
+2023-02-06T08:39:44.417683-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key PCXYGR1H from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1693983517'
+2023-02-06T08:39:44.422078-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key JAB85TJ6 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1681893517'
+2023-02-06T08:39:44.426421-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 42XV03V8 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1704864517'
+2023-02-06T08:39:44.430840-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key S4KDZZ4K from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1704260017'
+2023-02-06T08:39:44.435186-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 2AS77WWH from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1684311517'
+2023-02-06T08:39:44.439590-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key P40RJ69A from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1706073517'
+2023-02-06T08:39:44.443951-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key ATY8716T from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1689752017'
+2023-02-06T08:39:44.448354-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 1MXZTSEZ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1690356517'
+2023-02-06T08:39:44.452683-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key V0V2M23K from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1699424017'
+2023-02-06T08:39:44.457081-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key M78KJAXF from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1705469017'
+2023-02-06T08:39:44.461411-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key PV7NAZTW from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1681289017'
+2023-02-06T08:39:44.465801-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key 0AN04DDB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1698819517'
+2023-02-06T08:39:44.470128-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key DSVFAHG5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1686125017'
+2023-02-06T08:39:44.474536-0500 taler-exchange-secmod-cs-17125 INFO Imported 
key QBRVZ71M from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1700633017'
+2023-02-06T08:39:44.474847-0500 taler-exchange-secmod-cs-17125 INFO Updating 
keys of denomination `coin_eur_ct_1', last key AMKH6XA7 valid for another 365 
days
+2023-02-06T08:39:44.476796-0500 taler-exchange-secmod-cs-17125 INFO Updating 
keys of denomination `coin_eur_ct_1', last key AMKH6XA7 valid for another 365 
days
+2023-02-06T08:39:44.517183-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:39:44.521734-0500 
taler-exchange-httpd-17126(4ZJB77RXKDVSG1RW42W5HGP5A4) INFO Handling request 
(GET) for URL '/seed'
+2023-02-06T08:39:44.554043-0500 
taler-exchange-httpd-17126(4ZJB77RXKDVSG1RW42W5HGP5A4) INFO Request for `/seed' 
completed (0)
+==17160== 
+==17160== HEAP SUMMARY:
+==17160==     in use at exit: 1,864 bytes in 29 blocks
+==17160==   total heap usage: 1,552 allocs, 1,523 frees, 177,064 bytes 
allocated
+==17160== 
+==17160== LEAK SUMMARY:
+==17160==    definitely lost: 0 bytes in 0 blocks
+==17160==    indirectly lost: 0 bytes in 0 blocks
+==17160==      possibly lost: 0 bytes in 0 blocks
+==17160==    still reachable: 1,864 bytes in 29 blocks
+==17160==         suppressed: 0 bytes in 0 blocks
+==17160== Rerun with --leak-check=full to see details of leaked memory
+==17160== 
+==17160== For lists of detected and suppressed errors, rerun with: -s
+==17160== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17127== 
+==17127== HEAP SUMMARY:
+==17127==     in use at exit: 1,706 bytes in 49 blocks
+==17127==   total heap usage: 53 allocs, 4 frees, 2,882 bytes allocated
+==17127== 
+==17127== LEAK SUMMARY:
+==17127==    definitely lost: 0 bytes in 0 blocks
+==17127==    indirectly lost: 0 bytes in 0 blocks
+==17127==      possibly lost: 0 bytes in 0 blocks
+==17127==    still reachable: 1,706 bytes in 49 blocks
+==17127==         suppressed: 0 bytes in 0 blocks
+==17127== Rerun with --leak-check=full to see details of leaked memory
+==17127== 
+==17127== For lists of detected and suppressed errors, rerun with: -s
+==17127== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:39:44.931357-0500 .libs/test_merchant_api_cs-16942 INFO Starting 
main test loop
+2023-02-06T08:39:45.095589-0500 .libs/test_merchant_api_cs-16942 INFO Starting 
Fakebank on port 8082 (http://localhost:8082/2/)
+Warning: "1", specified for thread pool size, is ignored. Thread pool is not 
used.
+2023-02-06T08:39:45.231344-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `add-auditor-OK'
+2023-02-06T08:39:45.698685-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:39:45.701249-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:39:45.756985-0500 taler-exchange-secmod-rsa-17124 INFO 
Initializing new client 0x5583c00
+2023-02-06T08:39:45.760072-0500 taler-exchange-secmod-rsa-17124 INFO Sending 
message of length 0
+2023-02-06T08:39:45.761182-0500 taler-exchange-secmod-rsa-17124 INFO Sending 
RSA SYNCED message to 0x5583c00
+2023-02-06T08:39:45.762088-0500 taler-exchange-secmod-rsa-17124 INFO Sending 
message of type 10 and length 4
+2023-02-06T08:39:45.762684-0500 taler-exchange-secmod-rsa-17124 INFO Sending 
message of length 4
+2023-02-06T08:39:45.764713-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 10 and length 4
+2023-02-06T08:39:45.765560-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Now synchronized 
with RSA helper
+2023-02-06T08:39:45.843939-0500 taler-exchange-secmod-cs-17125 INFO 
Initializing new client 0x55e2860
+2023-02-06T08:39:45.848252-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 34927
+2023-02-06T08:39:45.851150-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:45.851642-0500 taler-exchange-secmod-cs-17125 INFO Sending CS 
SYNCED message to 0x55e2860
+2023-02-06T08:39:45.853371-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 15 and length 4
+2023-02-06T08:39:45.854475-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 4
+2023-02-06T08:39:45.855270-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
0HBYZESC (coin_eur_ct_1)
+2023-02-06T08:39:46.135236-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 0HBYZESC for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.150176-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.150442-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
GGDHX9HW (coin_eur_ct_1)
+2023-02-06T08:39:46.153994-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key GGDHX9HW for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.154637-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.154837-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
F2EWTKD3 (coin_eur_ct_1)
+2023-02-06T08:39:46.158352-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key F2EWTKD3 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.159114-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.159317-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
B2HHD9NH (coin_eur_ct_1)
+2023-02-06T08:39:46.162808-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key B2HHD9NH for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.163265-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.163456-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
PEEX5AR0 (coin_eur_ct_1)
+2023-02-06T08:39:46.166942-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key PEEX5AR0 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.167398-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.167588-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
P6HYWD63 (coin_eur_ct_1)
+2023-02-06T08:39:46.171073-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key P6HYWD63 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.171869-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.172074-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
PEYA8W42 (coin_eur_ct_1)
+2023-02-06T08:39:46.175844-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key PEYA8W42 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.176324-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.176515-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
NHCTNY39 (coin_eur_ct_1)
+2023-02-06T08:39:46.180049-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key NHCTNY39 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.180502-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.180692-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
B21XQMF4 (coin_eur_ct_1)
+2023-02-06T08:39:46.184199-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key B21XQMF4 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.185095-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.185292-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
E3YKJN1Q (coin_eur_ct_1)
+2023-02-06T08:39:46.188873-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key E3YKJN1Q for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.189601-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.189792-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
PV7NAZTW (coin_eur_ct_1)
+2023-02-06T08:39:46.193383-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key PV7NAZTW for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.193836-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.194027-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
JAB85TJ6 (coin_eur_ct_1)
+2023-02-06T08:39:46.197476-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key JAB85TJ6 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.197926-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.198127-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
S2T4307C (coin_eur_ct_1)
+2023-02-06T08:39:46.201630-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key S2T4307C for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.202347-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.202552-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
C7330F6E (coin_eur_ct_1)
+2023-02-06T08:39:46.206067-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key C7330F6E for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.206526-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.206791-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
6FZ6YY3Z (coin_eur_ct_1)
+2023-02-06T08:39:46.210535-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 6FZ6YY3Z for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.211006-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.211205-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
2AS77WWH (coin_eur_ct_1)
+2023-02-06T08:39:46.214845-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 2AS77WWH for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.215311-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.215509-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
0Z5ASDD1 (coin_eur_ct_1)
+2023-02-06T08:39:46.219180-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 0Z5ASDD1 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.219943-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.220142-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
ZFCCB4NP (coin_eur_ct_1)
+2023-02-06T08:39:46.223874-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key ZFCCB4NP for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.224345-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.224544-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
DSVFAHG5 (coin_eur_ct_1)
+2023-02-06T08:39:46.228247-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key DSVFAHG5 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.228771-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.228966-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
6AMMV375 (coin_eur_ct_1)
+2023-02-06T08:39:46.232618-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 6AMMV375 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.233334-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.233525-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
8F542D0D (coin_eur_ct_1)
+2023-02-06T08:39:46.237032-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 8F542D0D for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.237490-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.237680-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
5E8D6NWR (coin_eur_ct_1)
+2023-02-06T08:39:46.241337-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 5E8D6NWR for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.241810-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.242008-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
S6Q790SJ (coin_eur_ct_1)
+2023-02-06T08:39:46.245531-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key S6Q790SJ for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.246239-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.246429-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
26JXP8RT (coin_eur_ct_1)
+2023-02-06T08:39:46.249991-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 26JXP8RT for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.250429-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.250639-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
ATY8716T (coin_eur_ct_1)
+2023-02-06T08:39:46.254109-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key ATY8716T for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.254560-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.254760-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
1MXZTSEZ (coin_eur_ct_1)
+2023-02-06T08:39:46.258294-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 1MXZTSEZ for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.258751-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.258943-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
350DC33S (coin_eur_ct_1)
+2023-02-06T08:39:46.262389-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 350DC33S for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.263125-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.263315-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
36R5CB4N (coin_eur_ct_1)
+2023-02-06T08:39:46.266799-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 36R5CB4N for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.267234-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.267424-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
TK6XPZYV (coin_eur_ct_1)
+2023-02-06T08:39:46.270880-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key TK6XPZYV for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.271314-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.271503-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
HXD2F8NV (coin_eur_ct_1)
+2023-02-06T08:39:46.275045-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key HXD2F8NV for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.275746-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.275937-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
DDD28W23 (coin_eur_ct_1)
+2023-02-06T08:39:46.279401-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key DDD28W23 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.279834-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.280024-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
PCXYGR1H (coin_eur_ct_1)
+2023-02-06T08:39:46.283515-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key PCXYGR1H for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.283956-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.284163-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
QTFTJRZ5 (coin_eur_ct_1)
+2023-02-06T08:39:46.287658-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key QTFTJRZ5 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.288090-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.288280-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
6QFYM0ZX (coin_eur_ct_1)
+2023-02-06T08:39:46.291832-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 6QFYM0ZX for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.292530-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.292721-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
ZBE6JJVS (coin_eur_ct_1)
+2023-02-06T08:39:46.296185-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key ZBE6JJVS for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.296615-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.296805-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
0YN0G3GQ (coin_eur_ct_1)
+2023-02-06T08:39:46.300392-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 0YN0G3GQ for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.300821-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.301012-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
7AWENDKW (coin_eur_ct_1)
+2023-02-06T08:39:46.304529-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 7AWENDKW for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.305231-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.305421-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
3WQFXHPZ (coin_eur_ct_1)
+2023-02-06T08:39:46.309037-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 3WQFXHPZ for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.309464-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.309654-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
KSR74W5Q (coin_eur_ct_1)
+2023-02-06T08:39:46.313158-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key KSR74W5Q for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.313583-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.313773-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
0AN04DDB (coin_eur_ct_1)
+2023-02-06T08:39:46.317261-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 0AN04DDB for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.317953-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.318144-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
V0V2M23K (coin_eur_ct_1)
+2023-02-06T08:39:46.321612-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key V0V2M23K for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.322035-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.322225-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
HPVNVRJ2 (coin_eur_ct_1)
+2023-02-06T08:39:46.325747-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key HPVNVRJ2 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.326207-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.326398-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
QBRVZ71M (coin_eur_ct_1)
+2023-02-06T08:39:46.329887-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key QBRVZ71M for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.330307-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.330507-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
VBRXFKDT (coin_eur_ct_1)
+2023-02-06T08:39:46.333989-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key VBRXFKDT for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.334682-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.334875-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
RR7S5ERY (coin_eur_ct_1)
+2023-02-06T08:39:46.338394-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key RR7S5ERY for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.338836-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.339027-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
BNPZEFNM (coin_eur_ct_1)
+2023-02-06T08:39:46.342549-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key BNPZEFNM for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.342975-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.343166-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
THHWXC1T (coin_eur_ct_1)
+2023-02-06T08:39:46.346676-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key THHWXC1T for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.347369-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.347559-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
77HS2480 (coin_eur_ct_1)
+2023-02-06T08:39:46.351037-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 77HS2480 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.351454-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.351644-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
S4KDZZ4K (coin_eur_ct_1)
+2023-02-06T08:39:46.355177-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key S4KDZZ4K for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.355601-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.355791-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
42XV03V8 (coin_eur_ct_1)
+2023-02-06T08:39:46.359401-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 42XV03V8 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.359816-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.360007-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
M78KJAXF (coin_eur_ct_1)
+2023-02-06T08:39:46.363523-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key M78KJAXF for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.364204-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.364395-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
P40RJ69A (coin_eur_ct_1)
+2023-02-06T08:39:46.368052-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key P40RJ69A for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.368476-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 166
+2023-02-06T08:39:46.368666-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
AMKH6XA7 (coin_eur_ct_1)
+2023-02-06T08:39:46.372141-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key AMKH6XA7 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T08:39:46.372554-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.372744-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
1GHAW81F (coin_eur_ct_10)
+2023-02-06T08:39:46.376263-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 1GHAW81F for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.377059-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.377250-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
HEB1FFF6 (coin_eur_ct_10)
+2023-02-06T08:39:46.380695-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key HEB1FFF6 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.381222-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.381412-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
ZS21B83R (coin_eur_ct_10)
+2023-02-06T08:39:46.384907-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key ZS21B83R for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.385431-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.385622-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
Y9JFK8Q7 (coin_eur_ct_10)
+2023-02-06T08:39:46.392420-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key Y9JFK8Q7 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.393362-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.393556-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
822EJGJB (coin_eur_ct_10)
+2023-02-06T08:39:46.397089-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 822EJGJB for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.397625-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.397816-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
KE6PZTPN (coin_eur_ct_10)
+2023-02-06T08:39:46.401334-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key KE6PZTPN for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.401852-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.402043-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
XZNHNMZB (coin_eur_ct_10)
+2023-02-06T08:39:46.405517-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key XZNHNMZB for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.406034-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.406225-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
3YRT7NAC (coin_eur_ct_10)
+2023-02-06T08:39:46.409737-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 3YRT7NAC for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.410535-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.410728-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
W9HH1N7W (coin_eur_ct_10)
+2023-02-06T08:39:46.414170-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key W9HH1N7W for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.414692-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.414885-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
2TNPZ8EY (coin_eur_ct_10)
+2023-02-06T08:39:46.418381-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 2TNPZ8EY for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.418901-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.419091-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
9CGT4HS8 (coin_eur_ct_10)
+2023-02-06T08:39:46.422500-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 9CGT4HS8 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.423278-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.423480-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
G786QPSA (coin_eur_ct_10)
+2023-02-06T08:39:46.426895-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key G786QPSA for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.427441-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.427631-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
SJ9FC90C (coin_eur_ct_10)
+2023-02-06T08:39:46.431142-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key SJ9FC90C for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.431650-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.431840-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
TECN7R7J (coin_eur_ct_10)
+2023-02-06T08:39:46.435323-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key TECN7R7J for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.435837-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.436027-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
GSRQJ50J (coin_eur_ct_10)
+2023-02-06T08:39:46.439547-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key GSRQJ50J for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.440346-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.440537-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
QV3KKTN3 (coin_eur_ct_10)
+2023-02-06T08:39:46.444063-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key QV3KKTN3 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.444567-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.444757-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
4K0PWB1A (coin_eur_ct_10)
+2023-02-06T08:39:46.448252-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 4K0PWB1A for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.448761-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.448950-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
C3WM9ZJH (coin_eur_ct_10)
+2023-02-06T08:39:46.452495-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key C3WM9ZJH for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.453262-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.453453-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
DWGM5ZG3 (coin_eur_ct_10)
+2023-02-06T08:39:46.456918-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key DWGM5ZG3 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.457432-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.457622-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
BW1EXZBQ (coin_eur_ct_10)
+2023-02-06T08:39:46.461084-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key BW1EXZBQ for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.461590-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.461780-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
ACY1AXK4 (coin_eur_ct_10)
+2023-02-06T08:39:46.465262-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key ACY1AXK4 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.465756-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.465946-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
FBZZ696F (coin_eur_ct_10)
+2023-02-06T08:39:46.469428-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key FBZZ696F for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.470188-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.470378-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
ED9QBE10 (coin_eur_ct_10)
+2023-02-06T08:39:46.473867-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key ED9QBE10 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.474363-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.474565-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
GT1C1K81 (coin_eur_ct_10)
+2023-02-06T08:39:46.478056-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key GT1C1K81 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.478550-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.478742-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
JXBDN4WA (coin_eur_ct_10)
+2023-02-06T08:39:46.482221-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key JXBDN4WA for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.482980-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.483173-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
Z09WBTX3 (coin_eur_ct_10)
+2023-02-06T08:39:46.486691-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key Z09WBTX3 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.487185-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.487375-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
QSA1562V (coin_eur_ct_10)
+2023-02-06T08:39:46.490873-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key QSA1562V for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.491357-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.491547-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
BW58WNNC (coin_eur_ct_10)
+2023-02-06T08:39:46.495008-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key BW58WNNC for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.495757-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.495948-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
V8F6PR1K (coin_eur_ct_10)
+2023-02-06T08:39:46.499386-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key V8F6PR1K for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.499867-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.500057-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
A4WBC98G (coin_eur_ct_10)
+2023-02-06T08:39:46.503528-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key A4WBC98G for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.504007-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.504197-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
P3W1EWYM (coin_eur_ct_10)
+2023-02-06T08:39:46.507745-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key P3W1EWYM for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.508222-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.508412-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
QCQBT54Y (coin_eur_ct_10)
+2023-02-06T08:39:46.511894-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key QCQBT54Y for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.512635-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.512833-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
5D9J81KM (coin_eur_ct_10)
+2023-02-06T08:39:46.516338-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 5D9J81KM for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.516812-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.517002-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
TZ8EAYS5 (coin_eur_ct_10)
+2023-02-06T08:39:46.520492-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key TZ8EAYS5 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.520963-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.521153-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
DJWX5THB (coin_eur_ct_10)
+2023-02-06T08:39:46.524658-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key DJWX5THB for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.525395-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.525585-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
5D50XCQK (coin_eur_ct_10)
+2023-02-06T08:39:46.529128-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 5D50XCQK for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.529597-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.529786-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
6T0NPFE5 (coin_eur_ct_10)
+2023-02-06T08:39:46.533311-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 6T0NPFE5 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.533777-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.533967-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
S2X5WFFN (coin_eur_ct_10)
+2023-02-06T08:39:46.537519-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key S2X5WFFN for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.538000-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.538190-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
TYZH9WR2 (coin_eur_ct_10)
+2023-02-06T08:39:46.541707-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key TYZH9WR2 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.542438-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.542637-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
M4RXJMYQ (coin_eur_ct_10)
+2023-02-06T08:39:46.546169-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key M4RXJMYQ for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.546659-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.546850-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
WDPWHXZV (coin_eur_ct_10)
+2023-02-06T08:39:46.550294-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key WDPWHXZV for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.550774-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.550976-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
N5AW88W9 (coin_eur_ct_10)
+2023-02-06T08:39:46.554396-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key N5AW88W9 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.555144-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.555335-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
T77WC2VC (coin_eur_ct_10)
+2023-02-06T08:39:46.558848-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key T77WC2VC for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.559304-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.559495-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
6WMHZ8F0 (coin_eur_ct_10)
+2023-02-06T08:39:46.562972-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 6WMHZ8F0 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.563427-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.563618-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
GDN13SQP (coin_eur_ct_10)
+2023-02-06T08:39:46.567148-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key GDN13SQP for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.567867-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.568058-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
8KSZ012E (coin_eur_ct_10)
+2023-02-06T08:39:46.571602-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 8KSZ012E for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.572054-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.572244-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
K1J4DVPR (coin_eur_ct_10)
+2023-02-06T08:39:46.575806-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key K1J4DVPR for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.576256-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.576446-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
6AXJ4NNA (coin_eur_ct_10)
+2023-02-06T08:39:46.579933-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 6AXJ4NNA for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.580381-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.580571-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
WH8CYXT5 (coin_eur_ct_10)
+2023-02-06T08:39:46.584189-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key WH8CYXT5 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.584935-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.585134-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
WV34P5EM (coin_eur_ct_10)
+2023-02-06T08:39:46.588729-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key WV34P5EM for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.589174-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.589371-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
JCPVQMZ7 (coin_eur_ct_10)
+2023-02-06T08:39:46.592849-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key JCPVQMZ7 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.593293-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.593483-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
ESS4M3C9 (coin_eur_ct_10)
+2023-02-06T08:39:46.596973-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key ESS4M3C9 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.597682-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 167
+2023-02-06T08:39:46.597872-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
2B468NCN (coin_eur_ct_10)
+2023-02-06T08:39:46.601337-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 2B468NCN for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T08:39:46.601777-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.601966-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
XJMFT3QF (coin_eur_1)
+2023-02-06T08:39:46.605507-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key XJMFT3QF for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.605943-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.606133-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
K87W7J5C (coin_eur_1)
+2023-02-06T08:39:46.609606-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key K87W7J5C for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.610039-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.610229-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
P4JAYQ28 (coin_eur_1)
+2023-02-06T08:39:46.613710-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key P4JAYQ28 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.614409-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.614608-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
SJJ50R2X (coin_eur_1)
+2023-02-06T08:39:46.618056-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key SJJ50R2X for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.618496-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.618708-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
94CJQP7T (coin_eur_1)
+2023-02-06T08:39:46.622216-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 94CJQP7T for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.622664-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.622856-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
4F2DH4G5 (coin_eur_1)
+2023-02-06T08:39:46.626342-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 4F2DH4G5 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.627073-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.627264-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
KAFT0J59 (coin_eur_1)
+2023-02-06T08:39:46.630893-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key KAFT0J59 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.631327-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.631517-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
ST24V7W9 (coin_eur_1)
+2023-02-06T08:39:46.634981-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key ST24V7W9 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.635405-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.635595-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
Z7ZRATSG (coin_eur_1)
+2023-02-06T08:39:46.639106-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key Z7ZRATSG for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.639812-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.640002-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
7SAECQRC (coin_eur_1)
+2023-02-06T08:39:46.643488-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 7SAECQRC for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.643913-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.644104-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
K9RQ5K5P (coin_eur_1)
+2023-02-06T08:39:46.647631-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key K9RQ5K5P for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.648050-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.648245-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
891291QA (coin_eur_1)
+2023-02-06T08:39:46.651706-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 891291QA for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.652124-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.652313-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
FK1NXT7G (coin_eur_1)
+2023-02-06T08:39:46.655811-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key FK1NXT7G for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.656498-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.656689-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
1FKD64YY (coin_eur_1)
+2023-02-06T08:39:46.660230-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 1FKD64YY for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.660649-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.660838-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
83NKZQ1K (coin_eur_1)
+2023-02-06T08:39:46.664311-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 83NKZQ1K for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.664723-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.664913-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
H3T838QD (coin_eur_1)
+2023-02-06T08:39:46.668371-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key H3T838QD for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.669065-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.669256-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
YXXKPS80 (coin_eur_1)
+2023-02-06T08:39:46.672720-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key YXXKPS80 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.673133-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.673323-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
MNDDK5R1 (coin_eur_1)
+2023-02-06T08:39:46.676818-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key MNDDK5R1 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.677225-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.677415-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
AVXQWRE7 (coin_eur_1)
+2023-02-06T08:39:46.680953-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key AVXQWRE7 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.681364-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.681554-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
4YWJKR95 (coin_eur_1)
+2023-02-06T08:39:46.685064-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 4YWJKR95 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.685739-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.685929-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
ZQQP5796 (coin_eur_1)
+2023-02-06T08:39:46.689454-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key ZQQP5796 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.689856-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.690046-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
EC835AW5 (coin_eur_1)
+2023-02-06T08:39:46.693533-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key EC835AW5 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.693933-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.694123-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
DD2VMX6J (coin_eur_1)
+2023-02-06T08:39:46.697611-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key DD2VMX6J for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.698281-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.698482-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
R9G5VSEZ (coin_eur_1)
+2023-02-06T08:39:46.701946-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key R9G5VSEZ for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.702343-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.702553-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
25G0F5KD (coin_eur_1)
+2023-02-06T08:39:46.705992-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 25G0F5KD for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.706393-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.706600-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
ZQTAG30D (coin_eur_1)
+2023-02-06T08:39:46.710059-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key ZQTAG30D for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.710742-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.710934-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
MDMNDHS6 (coin_eur_1)
+2023-02-06T08:39:46.714417-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key MDMNDHS6 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.714838-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.715028-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
22JMT3BQ (coin_eur_1)
+2023-02-06T08:39:46.718529-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 22JMT3BQ for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.718927-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.719116-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
C23FR09P (coin_eur_1)
+2023-02-06T08:39:46.722553-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key C23FR09P for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.722974-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.723165-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
QEX06NVS (coin_eur_1)
+2023-02-06T08:39:46.726672-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key QEX06NVS for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.727334-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.727524-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
NXNYQKAQ (coin_eur_1)
+2023-02-06T08:39:46.731004-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key NXNYQKAQ for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.731390-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.731580-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
T6XCN05P (coin_eur_1)
+2023-02-06T08:39:46.735098-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key T6XCN05P for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.735486-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.735676-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
SKZ04GZV (coin_eur_1)
+2023-02-06T08:39:46.739182-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key SKZ04GZV for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.739851-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.740041-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
QZX8W10Y (coin_eur_1)
+2023-02-06T08:39:46.743514-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key QZX8W10Y for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.743894-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.744092-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
H9EHNAM5 (coin_eur_1)
+2023-02-06T08:39:46.747619-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key H9EHNAM5 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.747997-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.748188-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
8FDG0NWX (coin_eur_1)
+2023-02-06T08:39:46.751720-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 8FDG0NWX for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.752101-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.752291-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
ES56PW6T (coin_eur_1)
+2023-02-06T08:39:46.755762-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key ES56PW6T for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.756414-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.756609-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
HXXAPD00 (coin_eur_1)
+2023-02-06T08:39:46.760145-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key HXXAPD00 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.760520-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.760710-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
BKGPS6D4 (coin_eur_1)
+2023-02-06T08:39:46.764189-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key BKGPS6D4 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.764566-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.764756-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
JSKC0R41 (coin_eur_1)
+2023-02-06T08:39:46.768291-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key JSKC0R41 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.768935-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.769125-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
567Y3VYF (coin_eur_1)
+2023-02-06T08:39:46.772623-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 567Y3VYF for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.772992-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.773183-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
SDR7CSF8 (coin_eur_1)
+2023-02-06T08:39:46.776650-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key SDR7CSF8 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.777021-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.777220-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
9EYGPK1E (coin_eur_1)
+2023-02-06T08:39:46.780735-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 9EYGPK1E for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.781105-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.781295-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
4BZMQ9BH (coin_eur_1)
+2023-02-06T08:39:46.784811-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 4BZMQ9BH for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.785442-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.785633-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
HZ734SYP (coin_eur_1)
+2023-02-06T08:39:46.789131-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key HZ734SYP for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.789762-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.789957-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
TSHSRX35 (coin_eur_1)
+2023-02-06T08:39:46.793462-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key TSHSRX35 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.793828-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.794018-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
BQ4C9GMT (coin_eur_1)
+2023-02-06T08:39:46.797491-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key BQ4C9GMT for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.798118-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.798308-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
T3MPV2KW (coin_eur_1)
+2023-02-06T08:39:46.801806-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key T3MPV2KW for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.802168-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.802358-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
2ZTVE2MT (coin_eur_1)
+2023-02-06T08:39:46.805878-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 2ZTVE2MT for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.806239-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.806429-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
T26G5A0C (coin_eur_1)
+2023-02-06T08:39:46.809965-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key T26G5A0C for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.810602-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.810804-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
0A03DMFT (coin_eur_1)
+2023-02-06T08:39:46.814293-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 0A03DMFT for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.814665-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.814857-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
SZDKF869 (coin_eur_1)
+2023-02-06T08:39:46.818328-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key SZDKF869 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.818723-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.818915-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
A7AETFXH (coin_eur_1)
+2023-02-06T08:39:46.822418-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key A7AETFXH for denomination type coin_eur_1 with validity 7 days
+2023-02-06T08:39:46.822788-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.822978-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
EW528A72 (coin_eur_5)
+2023-02-06T08:39:46.826417-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key EW528A72 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.827038-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.827228-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
MTBGBYJN (coin_eur_5)
+2023-02-06T08:39:46.830718-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key MTBGBYJN for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.831068-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.831259-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
J7XGY3JB (coin_eur_5)
+2023-02-06T08:39:46.834709-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key J7XGY3JB for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.835058-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.835248-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
GEERKG2F (coin_eur_5)
+2023-02-06T08:39:46.838792-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key GEERKG2F for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.839417-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.839607-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
K31Z9EHZ (coin_eur_5)
+2023-02-06T08:39:46.843123-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key K31Z9EHZ for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.843466-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.843657-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
RJR3RN6V (coin_eur_5)
+2023-02-06T08:39:46.847112-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key RJR3RN6V for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.847453-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.847644-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
JEM5B57M (coin_eur_5)
+2023-02-06T08:39:46.851098-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key JEM5B57M for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.851434-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.851623-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
9E5Y12XK (coin_eur_5)
+2023-02-06T08:39:46.855078-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 9E5Y12XK for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.855684-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.855875-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
6N2P456C (coin_eur_5)
+2023-02-06T08:39:46.859397-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 6N2P456C for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.859742-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.859932-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
BQH4V4FJ (coin_eur_5)
+2023-02-06T08:39:46.863430-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key BQH4V4FJ for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.863762-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.863957-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
4CGGRE8B (coin_eur_5)
+2023-02-06T08:39:46.867425-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 4CGGRE8B for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.868029-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.868220-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
TPEA99F5 (coin_eur_5)
+2023-02-06T08:39:46.871745-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key TPEA99F5 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.872079-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.872269-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
3G8YKGDZ (coin_eur_5)
+2023-02-06T08:39:46.875798-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 3G8YKGDZ for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.876130-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.876319-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
PQK9DW0J (coin_eur_5)
+2023-02-06T08:39:46.879796-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key PQK9DW0J for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.880387-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.880578-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
SKCHYFB8 (coin_eur_5)
+2023-02-06T08:39:46.884099-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key SKCHYFB8 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.884427-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.884617-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
5FTMD5S9 (coin_eur_5)
+2023-02-06T08:39:46.888114-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 5FTMD5S9 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.888441-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.888630-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
2Z5WBE1Y (coin_eur_5)
+2023-02-06T08:39:46.892119-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 2Z5WBE1Y for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.892438-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.892628-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
42278A6A (coin_eur_5)
+2023-02-06T08:39:46.896131-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 42278A6A for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.896720-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.896918-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
F6ZNCY50 (coin_eur_5)
+2023-02-06T08:39:46.900359-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key F6ZNCY50 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.900680-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.900870-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
0TNFW880 (coin_eur_5)
+2023-02-06T08:39:46.904410-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 0TNFW880 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.904725-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.904915-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
VDHB19ZQ (coin_eur_5)
+2023-02-06T08:39:46.908383-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key VDHB19ZQ for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.908968-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.909158-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
NABR9NEM (coin_eur_5)
+2023-02-06T08:39:46.912585-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key NABR9NEM for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.912921-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.913112-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
KAHY3QBE (coin_eur_5)
+2023-02-06T08:39:46.916607-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key KAHY3QBE for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.916918-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.917108-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
G9CYRY0G (coin_eur_5)
+2023-02-06T08:39:46.920572-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key G9CYRY0G for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.920880-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.921070-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
6CXV715K (coin_eur_5)
+2023-02-06T08:39:46.924530-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 6CXV715K for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.925108-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.925298-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
C01QDVM8 (coin_eur_5)
+2023-02-06T08:39:46.928817-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key C01QDVM8 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.929132-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.929321-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
HV7NE0CE (coin_eur_5)
+2023-02-06T08:39:46.932786-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key HV7NE0CE for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.933090-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.933280-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
MFYBSS0B (coin_eur_5)
+2023-02-06T08:39:46.936757-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key MFYBSS0B for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.937338-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.937532-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
X2H5VR7R (coin_eur_5)
+2023-02-06T08:39:46.941029-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key X2H5VR7R for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.941333-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.941523-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
7TA14R36 (coin_eur_5)
+2023-02-06T08:39:46.945047-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 7TA14R36 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.945346-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.945536-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
BMMSQP4W (coin_eur_5)
+2023-02-06T08:39:46.949030-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key BMMSQP4W for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.949598-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.949789-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
GF8NWX2R (coin_eur_5)
+2023-02-06T08:39:46.953241-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key GF8NWX2R for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.953540-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.953730-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
RX3HGJPP (coin_eur_5)
+2023-02-06T08:39:46.957246-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key RX3HGJPP for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.957540-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.957730-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
W8REVV63 (coin_eur_5)
+2023-02-06T08:39:46.961213-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key W8REVV63 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.961518-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.961707-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
3XT18ZQM (coin_eur_5)
+2023-02-06T08:39:46.965206-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 3XT18ZQM for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.965767-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.965957-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
6V7X34X1 (coin_eur_5)
+2023-02-06T08:39:46.969438-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 6V7X34X1 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.969726-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.969916-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
0873V44G (coin_eur_5)
+2023-02-06T08:39:46.973407-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 0873V44G for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.973694-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.973896-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
QXBKNKCW (coin_eur_5)
+2023-02-06T08:39:46.977407-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key QXBKNKCW for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.977964-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.978154-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
99MVDFSB (coin_eur_5)
+2023-02-06T08:39:46.981699-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 99MVDFSB for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.981982-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.982177-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
7VDVMFPK (coin_eur_5)
+2023-02-06T08:39:46.985635-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 7VDVMFPK for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.985916-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.986106-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
0C90WJFB (coin_eur_5)
+2023-02-06T08:39:46.989607-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 0C90WJFB for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.989892-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.990082-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
1HEBMHQB (coin_eur_5)
+2023-02-06T08:39:46.993575-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 1HEBMHQB for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.994127-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.994317-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
0QAXT1R4 (coin_eur_5)
+2023-02-06T08:39:46.997814-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 0QAXT1R4 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:46.998090-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:46.998280-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
8QFSDJD5 (coin_eur_5)
+2023-02-06T08:39:47.001789-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 8QFSDJD5 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:47.002071-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:47.002262-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
77X4WJTF (coin_eur_5)
+2023-02-06T08:39:47.005764-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 77X4WJTF for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:47.006333-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:47.006531-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
Y9C2ENMN (coin_eur_5)
+2023-02-06T08:39:47.010003-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key Y9C2ENMN for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:47.010283-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:47.010481-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
7NEATPW9 (coin_eur_5)
+2023-02-06T08:39:47.013973-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 7NEATPW9 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:47.014248-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:47.014440-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
PQM7A33J (coin_eur_5)
+2023-02-06T08:39:47.017923-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key PQM7A33J for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:47.018467-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:47.018661-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
WMY0J01S (coin_eur_5)
+2023-02-06T08:39:47.022144-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key WMY0J01S for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:47.022410-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:47.022611-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
67RBHN8A (coin_eur_5)
+2023-02-06T08:39:47.026071-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 67RBHN8A for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:47.026336-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:47.026534-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
VHRZ65AV (coin_eur_5)
+2023-02-06T08:39:47.030011-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key VHRZ65AV for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:47.030279-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:47.030477-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
56CANKFY (coin_eur_5)
+2023-02-06T08:39:47.033963-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 56CANKFY for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:47.034507-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 2 and length 163
+2023-02-06T08:39:47.034705-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received CS key 
1FQ1YVGH (coin_eur_5)
+2023-02-06T08:39:47.038181-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO CS helper announces 
key 1FQ1YVGH for denomination type coin_eur_5 with validity 7 days
+2023-02-06T08:39:47.038684-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Received message of 
type 15 and length 4
+2023-02-06T08:39:47.039228-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Now synchronized 
with CS helper
+2023-02-06T08:39:47.148030-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 12 and length 152
+2023-02-06T08:39:47.151195-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 152
+2023-02-06T08:39:47.155904-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 12 and length 152
+2023-02-06T08:39:47.156111-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 152
+2023-02-06T08:39:47.158942-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 12 and length 152
+2023-02-06T08:39:47.159090-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 152
+2023-02-06T08:39:47.159962-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO EdDSA helper 
announces signing key 24CCF2KX with validity 84 days
+2023-02-06T08:39:47.161902-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 12 and length 152
+2023-02-06T08:39:47.162049-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 152
+2023-02-06T08:39:47.164869-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 12 and length 152
+2023-02-06T08:39:47.165017-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 152
+2023-02-06T08:39:47.166662-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO EdDSA helper 
announces signing key 998CAR11 with validity 84 days
+2023-02-06T08:39:47.166997-0500 taler-exchange-secmod-eddsa-17123 INFO Client 
0x550b1e0 synced
+2023-02-06T08:39:47.167326-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 19 and length 4
+2023-02-06T08:39:47.167478-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 4
+2023-02-06T08:39:47.170401-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO EdDSA helper 
announces signing key GT6FSDDR with validity 84 days
+2023-02-06T08:39:47.173876-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO EdDSA helper 
announces signing key Z5V2Z8EB with validity 84 days
+2023-02-06T08:39:47.177529-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO EdDSA helper 
announces signing key GM40WQZ7 with validity 84 days
+2023-02-06T08:39:47.178075-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Now synchronized 
with EdDSA helper
+2023-02-06T08:39:47.202111-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Loading global fees 
from DB: 0
+2023-02-06T08:39:47.282610-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) WARNING No denomination 
keys available. Refusing to generate /keys response.
+2023-02-06T08:39:47.286199-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Suspending /keys 
request until key material changes
+2023-02-06T08:39:47.294975-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:39:47.296426-0500 
taler-exchange-httpd-17126(Y7ZR6PTQ678W7QF777VZWTKSE0) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:39:47.297989-0500 
taler-exchange-httpd-17126(Y7ZR6PTQ678W7QF777VZWTKSE0) INFO Loading global fees 
from DB: 0
+2023-02-06T08:39:47.301779-0500 
taler-exchange-httpd-17126(Y7ZR6PTQ678W7QF777VZWTKSE0) WARNING No denomination 
keys available. Refusing to generate /keys response.
+2023-02-06T08:39:47.305742-0500 
taler-exchange-httpd-17126(Y7ZR6PTQ678W7QF777VZWTKSE0) INFO Suspending /keys 
request until key material changes
+2023-02-06T08:39:47.308167-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:39:47.311087-0500 
taler-exchange-httpd-17126(M80YHXKXAC145B1DEG8AX4ZY24) INFO Handling request 
(POST) for URL '/management/auditors'
+2023-02-06T08:39:47.314992-0500 
taler-exchange-httpd-17126(M80YHXKXAC145B1DEG8AX4ZY24) INFO Handling request 
(POST) for URL '/management/auditors'
+2023-02-06T08:39:47.317971-0500 
taler-exchange-httpd-17126(M80YHXKXAC145B1DEG8AX4ZY24) INFO Handling request 
(POST) for URL '/management/auditors'
+2023-02-06T08:39:47.397796-0500 
taler-exchange-httpd-17126(M80YHXKXAC145B1DEG8AX4ZY24) INFO Starting 
transaction `add auditor'
+2023-02-06T08:39:47.410293-0500 
taler-exchange-httpd-17126(M80YHXKXAC145B1DEG8AX4ZY24) INFO Executing command 
`NOTIFY XRE2709K6TYDBVARD9Y5SCZY7VHE4D5DKF0R8DHQ4X5T13E8X2X60, '''
+2023-02-06T08:39:47.411259-0500 
taler-exchange-httpd-17126(M80YHXKXAC145B1DEG8AX4ZY24) INFO PG poll job active
+2023-02-06T08:39:47.411500-0500 
taler-exchange-httpd-17126(M80YHXKXAC145B1DEG8AX4ZY24) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:39:47.446164-0500 
taler-exchange-httpd-17126(M80YHXKXAC145B1DEG8AX4ZY24) INFO Request for 
`/management/auditors' completed (0)
+2023-02-06T08:39:47.449330-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:39:47.450614-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Loading global fees 
from DB: 0
+2023-02-06T08:39:47.526622-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `add-wire-account'
+2023-02-06T08:39:47.600368-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) WARNING No denomination 
keys available. Refusing to generate /keys response.
+2023-02-06T08:39:47.600724-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Suspending /keys 
request until key material changes
+2023-02-06T08:39:47.601149-0500 
taler-exchange-httpd-17126(Y7ZR6PTQ678W7QF777VZWTKSE0) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:39:47.602741-0500 
taler-exchange-httpd-17126(Y7ZR6PTQ678W7QF777VZWTKSE0) INFO Suspending /keys 
request until key material changes
+2023-02-06T08:39:47.603553-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:39:47.604928-0500 
taler-exchange-httpd-17126(RV74KBNP72W3VS7VRKZ7D4Y4YC) INFO Handling request 
(POST) for URL '/management/wire'
+2023-02-06T08:39:47.605137-0500 
taler-exchange-httpd-17126(RV74KBNP72W3VS7VRKZ7D4Y4YC) INFO Handling request 
(POST) for URL '/management/wire'
+2023-02-06T08:39:47.605318-0500 
taler-exchange-httpd-17126(RV74KBNP72W3VS7VRKZ7D4Y4YC) INFO Handling request 
(POST) for URL '/management/wire'
+2023-02-06T08:39:47.622676-0500 
taler-exchange-httpd-17126(RV74KBNP72W3VS7VRKZ7D4Y4YC) INFO Starting 
transaction `add wire'
+2023-02-06T08:39:47.635378-0500 
taler-exchange-httpd-17126(RV74KBNP72W3VS7VRKZ7D4Y4YC) INFO Executing command 
`NOTIFY XAA6QKJBC4S2DFWADVSRJBSD0683ZVFMHRRXZEXRP9773Q0X17750, '''
+2023-02-06T08:39:47.635945-0500 
taler-exchange-httpd-17126(RV74KBNP72W3VS7VRKZ7D4Y4YC) INFO PG poll job active
+2023-02-06T08:39:47.638632-0500 
taler-exchange-httpd-17126(RV74KBNP72W3VS7VRKZ7D4Y4YC) INFO Received 
notification xre2709k6tydbvard9y5sczy7vhe4d5dkf0r8dhq4x5t13e8x2x60 with extra 
data `'
+2023-02-06T08:39:47.640391-0500 
taler-exchange-httpd-17126(RV74KBNP72W3VS7VRKZ7D4Y4YC) INFO Received /wire 
update event
+2023-02-06T08:39:47.641401-0500 
taler-exchange-httpd-17126(RV74KBNP72W3VS7VRKZ7D4Y4YC) INFO Received /keys 
update event
+2023-02-06T08:39:47.642559-0500 
taler-exchange-httpd-17126(RV74KBNP72W3VS7VRKZ7D4Y4YC) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:39:47.643352-0500 
taler-exchange-httpd-17126(RV74KBNP72W3VS7VRKZ7D4Y4YC) INFO Request for 
`/management/wire' completed (0)
+2023-02-06T08:39:47.643675-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:39:47.644547-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Loading global fees 
from DB: 0
+2023-02-06T08:39:47.646318-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `offline-sign-future-keys'
+==17171== Memcheck, a memory error detector
+==17171== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17171== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17171== Command: /home/priscilla/install/bin/taler-exchange-offline -c 
test_merchant_api-cs.conf -L INFO download sign upload
+==17171== 
+2023-02-06T08:39:47.697555-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) WARNING No denomination 
keys available. Refusing to generate /keys response.
+2023-02-06T08:39:47.698640-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Suspending /keys 
request until key material changes
+2023-02-06T08:39:47.698840-0500 
taler-exchange-httpd-17126(Y7ZR6PTQ678W7QF777VZWTKSE0) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:39:47.699478-0500 
taler-exchange-httpd-17126(Y7ZR6PTQ678W7QF777VZWTKSE0) INFO Suspending /keys 
request until key material changes
+2023-02-06T08:39:49.359395-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:39:49.360646-0500 
taler-exchange-httpd-17126(4H7FM3YSPYKEXJJ8HVVQFQXJ7R) INFO Handling request 
(GET) for URL '/management/keys'
+2023-02-06T08:39:49.531063-0500 
taler-exchange-httpd-17126(4H7FM3YSPYKEXJJ8HVVQFQXJ7R) INFO Returning GET 
/management/keys response:
+2023-02-06T08:39:49.675938-0500 
taler-exchange-httpd-17126(4H7FM3YSPYKEXJJ8HVVQFQXJ7R) INFO Request for 
`/management/keys' completed (0)
+2023-02-06T08:39:51.213464-0500 taler-exchange-offline-17171 INFO Using master 
public key HGYF3P1M
+2023-02-06T08:39:51.438950-0500 .libs/test_merchant_api_cs-16942 INFO Received 
keys from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 
31 19:00:00 1969.
+2023-02-06T08:39:51.441455-0500 .libs/test_merchant_api_cs-16942 WARNING 
Exchange failed to give expiration time, assuming in 1 h
+2023-02-06T08:39:51.443059-0500 .libs/test_merchant_api_cs-16942 WARNING 
Failed to receive /keys response from exchange http://localhost:8081/
+2023-02-06T08:39:51.451227-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:39:51.452499-0500 
taler-exchange-httpd-17126(HMENEXZV2P1YBS6SGR8904DJMR) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:39:51.453119-0500 
taler-exchange-httpd-17126(HMENEXZV2P1YBS6SGR8904DJMR) INFO Suspending /keys 
request until key material changes
+2023-02-06T08:39:52.972645-0500 taler-exchange-offline-17171 INFO Uploading 
212 denomination and 5 signing key signatures
+2023-02-06T08:39:53.141007-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:39:53.142056-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Handling request 
(POST) for URL '/management/keys'
+2023-02-06T08:39:53.142254-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Handling request 
(POST) for URL '/management/keys'
+2023-02-06T08:39:53.144374-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Handling request 
(POST) for URL '/management/keys'
+2023-02-06T08:39:53.145252-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Handling request 
(POST) for URL '/management/keys'
+2023-02-06T08:39:53.228179-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Received 
/management/keys
+2023-02-06T08:39:53.241045-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Received 212 
denomination and 5 signing key signatures
+2023-02-06T08:39:53.241551-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Starting 
transaction `add keys'
+2023-02-06T08:39:53.261449-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `026B92PV'
+2023-02-06T08:39:53.268262-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `1BJ4CBH5'
+2023-02-06T08:39:53.274082-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `1ETATBA2'
+2023-02-06T08:39:53.279601-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `3TT3RH2Y'
+2023-02-06T08:39:53.285253-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `41M18REB'
+2023-02-06T08:39:53.290548-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `4DTBVMHD'
+2023-02-06T08:39:53.295652-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `4K829CTS'
+2023-02-06T08:39:53.300689-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `6BJ2PV81'
+2023-02-06T08:39:53.305566-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `6QMEPPJK'
+2023-02-06T08:39:53.310563-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `7TWFDPAB'
+2023-02-06T08:39:53.315532-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `8ET1NSMN'
+2023-02-06T08:39:53.320298-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `90E5BD8W'
+2023-02-06T08:39:53.324956-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `93R83JDB'
+2023-02-06T08:39:53.329659-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `APP39Z1E'
+2023-02-06T08:39:53.334358-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `B1T3E6BR'
+2023-02-06T08:39:53.339056-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `BM62SG9M'
+2023-02-06T08:39:53.343803-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `CPECSN4B'
+2023-02-06T08:39:53.348430-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `ENT3PXCE'
+2023-02-06T08:39:53.353222-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `F1C9TVNE'
+2023-02-06T08:39:53.357929-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `GX4CA402'
+2023-02-06T08:39:53.362540-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `H3RDX61N'
+2023-02-06T08:39:53.367242-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `H0T7W7KQ'
+2023-02-06T08:39:53.371837-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `HB646EGW'
+2023-02-06T08:39:53.376429-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `HDECQYS1'
+2023-02-06T08:39:53.381355-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `J4R43592'
+2023-02-06T08:39:53.386003-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `KAW2GRC5'
+2023-02-06T08:39:53.390616-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `M0Y5KEGN'
+2023-02-06T08:39:53.395261-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `PR82HC84'
+2023-02-06T08:39:53.399871-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `QT06T04Q'
+2023-02-06T08:39:53.404442-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `SDG9S3VK'
+2023-02-06T08:39:53.409047-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `SNACB3EX'
+2023-02-06T08:39:53.413751-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `TKP0PCVP'
+2023-02-06T08:39:53.418299-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `TM03GR1P'
+2023-02-06T08:39:53.422885-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `W5WCNHA4'
+2023-02-06T08:39:53.427525-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `WK47ZE9P'
+2023-02-06T08:39:53.432219-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `WYR5NBVB'
+2023-02-06T08:39:53.436834-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `X3C84RQ6'
+2023-02-06T08:39:53.441491-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `X2JEWB54'
+2023-02-06T08:39:53.446258-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `X7A8QJWZ'
+2023-02-06T08:39:53.450805-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `XPEC563R'
+2023-02-06T08:39:53.455523-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `YR6EQST3'
+2023-02-06T08:39:53.460235-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `YTRB55TD'
+2023-02-06T08:39:53.464889-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `ZFTCZBKZ'
+2023-02-06T08:39:53.469478-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `0FYH4FT4'
+2023-02-06T08:39:53.474095-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `0TRT786E'
+2023-02-06T08:39:53.478769-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `12PNXAGA'
+2023-02-06T08:39:53.483463-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `1G4ZZ0F7'
+2023-02-06T08:39:53.488188-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `1YYK5MCR'
+2023-02-06T08:39:53.492947-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `2EEM9BQB'
+2023-02-06T08:39:53.497583-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `2PRX4REG'
+2023-02-06T08:39:53.502222-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `5WJXAD49'
+2023-02-06T08:39:53.506906-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `63TNHG0E'
+2023-02-06T08:39:53.511561-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `7B0S19JW'
+2023-02-06T08:39:53.516239-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `7WAPT39G'
+2023-02-06T08:39:53.520955-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `88WPRM1Z'
+2023-02-06T08:39:53.525577-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `8HMVB6B7'
+2023-02-06T08:39:53.530134-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `A8RQZBYE'
+2023-02-06T08:39:53.534773-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `AMAY71YW'
+2023-02-06T08:39:53.539449-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `BR2VMAT9'
+2023-02-06T08:39:53.544217-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `DXYZQ51H'
+2023-02-06T08:39:53.548895-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `E5APY8KR'
+2023-02-06T08:39:53.553496-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `F54GD3DS'
+2023-02-06T08:39:53.558408-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `H6TQJ0DC'
+2023-02-06T08:39:53.562988-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `HBES0SWA'
+2023-02-06T08:39:53.567743-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `HDJJMP7T'
+2023-02-06T08:39:53.572341-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `HSYKBRQJ'
+2023-02-06T08:39:53.576909-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `K86J12XC'
+2023-02-06T08:39:53.581585-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `KW4TC0EJ'
+2023-02-06T08:39:53.586169-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `MHAKYM6T'
+2023-02-06T08:39:53.590736-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `NWPW4F3V'
+2023-02-06T08:39:53.595474-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `NZPJ1P5G'
+2023-02-06T08:39:53.600158-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `PFPMC86R'
+2023-02-06T08:39:53.604866-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `PTMSPTWP'
+2023-02-06T08:39:53.609552-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `QA8ZYTB4'
+2023-02-06T08:39:53.614116-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `QZJP0SB3'
+2023-02-06T08:39:53.618707-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `RR4T104V'
+2023-02-06T08:39:53.623339-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `RSJHBBX2'
+2023-02-06T08:39:53.628142-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `RZ2RP3WS'
+2023-02-06T08:39:53.632808-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `TTJMTTCS'
+2023-02-06T08:39:53.637508-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `TY0SH6EB'
+2023-02-06T08:39:53.642094-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `VBPX34C6'
+2023-02-06T08:39:53.646777-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `W92KHPX5'
+2023-02-06T08:39:53.651631-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `WRYQCQ5X'
+2023-02-06T08:39:53.656374-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `XECR9799'
+2023-02-06T08:39:53.661198-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `XEPN2E8X'
+2023-02-06T08:39:53.665915-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `YP6VAGCV'
+2023-02-06T08:39:53.670650-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `YZAGCB82'
+2023-02-06T08:39:53.675266-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `Z7MH9J3T'
+2023-02-06T08:39:53.679998-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `007BNCAM'
+2023-02-06T08:39:53.684734-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `0GBFKW13'
+2023-02-06T08:39:53.689350-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `0XVDKAWB'
+2023-02-06T08:39:53.693927-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `1AQA6DC8'
+2023-02-06T08:39:53.698635-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `1RN5E3QN'
+2023-02-06T08:39:53.703251-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `28K59QGK'
+2023-02-06T08:39:53.707846-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `2BH54XA1'
+2023-02-06T08:39:53.712406-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `2H7BB7FK'
+2023-02-06T08:39:53.717095-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `3539JAW4'
+2023-02-06T08:39:53.721900-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `3KN5D78W'
+2023-02-06T08:39:53.726454-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `3X14C86W'
+2023-02-06T08:39:53.731039-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `4PXBJQY8'
+2023-02-06T08:39:53.735644-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `4XN9PNKR'
+2023-02-06T08:39:53.740310-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `4ZZ7G9N6'
+2023-02-06T08:39:53.744906-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `53QA373X'
+2023-02-06T08:39:53.749546-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `5V37TDTB'
+2023-02-06T08:39:53.754180-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `5VKB7EFK'
+2023-02-06T08:39:53.758791-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `6859740J'
+2023-02-06T08:39:53.763431-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `76BBEAAG'
+2023-02-06T08:39:53.768156-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `7WS9DSAH'
+2023-02-06T08:39:53.776401-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `8AQ52C84'
+2023-02-06T08:39:53.781177-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `94BDKMD5'
+2023-02-06T08:39:53.785702-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `A59AW3GR'
+2023-02-06T08:39:53.790275-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `AAF80G7X'
+2023-02-06T08:39:53.794937-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `B17D6ZWG'
+2023-02-06T08:39:53.799617-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `BN37MHK9'
+2023-02-06T08:39:53.804369-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `BPQBGH4B'
+2023-02-06T08:39:53.809080-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `C7Z3314D'
+2023-02-06T08:39:53.813680-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `CGN5SNNT'
+2023-02-06T08:39:53.818377-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `CH9BBSA7'
+2023-02-06T08:39:53.822887-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `CNVAHVQ8'
+2023-02-06T08:39:53.827514-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `CR9F8A5Y'
+2023-02-06T08:39:53.832181-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `D9S761XQ'
+2023-02-06T08:39:53.836820-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `DTH0FWXW'
+2023-02-06T08:39:53.841450-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `EHQ6EZ7W'
+2023-02-06T08:39:53.846098-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `ENK1KPFR'
+2023-02-06T08:39:53.850742-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `FFNE46TY'
+2023-02-06T08:39:53.855339-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `FXKDA2HN'
+2023-02-06T08:39:53.859949-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `GWH5FXY8'
+2023-02-06T08:39:53.864551-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `GZ7DHG00'
+2023-02-06T08:39:53.869243-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `H1VD95KD'
+2023-02-06T08:39:53.873836-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `HMF3WZQH'
+2023-02-06T08:39:53.878516-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `HWB4TQKH'
+2023-02-06T08:39:53.883263-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `K1VDMPFY'
+2023-02-06T08:39:53.887969-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `K4SCN7D1'
+2023-02-06T08:39:53.892760-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `KJ9BJF1T'
+2023-02-06T08:39:53.897355-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `N2XBHN5T'
+2023-02-06T08:39:53.901992-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `PGS5MG86'
+2023-02-06T08:39:53.906665-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `QRV8QY8E'
+2023-02-06T08:39:53.911255-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `R975QW94'
+2023-02-06T08:39:53.915930-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `S55ERBNB'
+2023-02-06T08:39:53.920547-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `SZ136PTK'
+2023-02-06T08:39:53.925171-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `T7V2KXRG'
+2023-02-06T08:39:53.929860-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `TC314QM7'
+2023-02-06T08:39:53.934455-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `TMQ7MM1H'
+2023-02-06T08:39:53.939115-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `V9H5F728'
+2023-02-06T08:39:53.943787-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `VFX1TMN2'
+2023-02-06T08:39:53.948446-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `WFX9H9HT'
+2023-02-06T08:39:53.953007-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `WF92WMTW'
+2023-02-06T08:39:53.957610-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `WR5FQ0QY'
+2023-02-06T08:39:53.962194-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `Y0HBH7H5'
+2023-02-06T08:39:53.966817-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `ZKS3GA8R'
+2023-02-06T08:39:53.971496-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `ZSS2DT9T'
+2023-02-06T08:39:53.976116-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `0V1J155P'
+2023-02-06T08:39:53.981963-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `1KSYB0C9'
+2023-02-06T08:39:53.986689-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `2B7WJMN4'
+2023-02-06T08:39:53.991344-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `2SNGAHBS'
+2023-02-06T08:39:53.996001-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `2RHZP74E'
+2023-02-06T08:39:54.000488-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `311JT7ZE'
+2023-02-06T08:39:54.005153-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `3J1V6PFN'
+2023-02-06T08:39:54.009811-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `41NJF3W6'
+2023-02-06T08:39:54.014456-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `4BXWSB5C'
+2023-02-06T08:39:54.018981-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `4FFK3TXV'
+2023-02-06T08:39:54.023796-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `4MDKJ2HR'
+2023-02-06T08:39:54.028489-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `5ANNEE5T'
+2023-02-06T08:39:54.033166-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `697YM7P3'
+2023-02-06T08:39:54.037834-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `6HBN8H0G'
+2023-02-06T08:39:54.042483-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `737M4S0T'
+2023-02-06T08:39:54.047056-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `7B5PV9PR'
+2023-02-06T08:39:54.051729-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `7A5JT5H1'
+2023-02-06T08:39:54.056448-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `7GFWDH97'
+2023-02-06T08:39:54.061075-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `7VZNQ980'
+2023-02-06T08:39:54.065760-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `7TQTDZAW'
+2023-02-06T08:39:54.070375-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `7Z9GZJHG'
+2023-02-06T08:39:54.075003-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `7ZBXCXAV'
+2023-02-06T08:39:54.079702-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `8PSX5S6K'
+2023-02-06T08:39:54.084398-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `97VHP8KB'
+2023-02-06T08:39:54.089114-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `9J5WBVZB'
+2023-02-06T08:39:54.093767-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `9TZS7556'
+2023-02-06T08:39:54.098391-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `9R5M73D9'
+2023-02-06T08:39:54.103076-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `B77HHFW1'
+2023-02-06T08:39:54.107741-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `CA1NNPR5'
+2023-02-06T08:39:54.112448-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `C9NP51QX'
+2023-02-06T08:39:54.117186-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `DAFMDF9C'
+2023-02-06T08:39:54.121835-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `E31W3FYA'
+2023-02-06T08:39:54.126472-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `E8ZXY9Q9'
+2023-02-06T08:39:54.131333-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `EDHTN1NH'
+2023-02-06T08:39:54.136265-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `FDBQRXQD'
+2023-02-06T08:39:54.140915-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `FQBX2DCV'
+2023-02-06T08:39:54.145670-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `FWSVTHZ4'
+2023-02-06T08:39:54.150365-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `FZ5KF8NN'
+2023-02-06T08:39:54.155080-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `GP1MHMVS'
+2023-02-06T08:39:54.159741-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `GP9KCRWB'
+2023-02-06T08:39:54.164477-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `GZ1VPSYP'
+2023-02-06T08:39:54.169199-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `GYBNYWFB'
+2023-02-06T08:39:54.173878-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `HSVN3F5C'
+2023-02-06T08:39:54.178527-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `JANG83D7'
+2023-02-06T08:39:54.183185-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `JNXY0FM2'
+2023-02-06T08:39:54.187925-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `K4ZWQB1Y'
+2023-02-06T08:39:54.192575-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `N2NH55PR'
+2023-02-06T08:39:54.197283-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `NJQTSXN1'
+2023-02-06T08:39:54.201981-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `NGBS6GSE'
+2023-02-06T08:39:54.206679-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `NP3QNAD4'
+2023-02-06T08:39:54.211364-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `PGSH1QXY'
+2023-02-06T08:39:54.216101-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `PTSYQFTK'
+2023-02-06T08:39:54.220711-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `Q1XSG2YJ'
+2023-02-06T08:39:54.225148-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `RZKPJBWE'
+2023-02-06T08:39:54.229736-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `SE1HK52M'
+2023-02-06T08:39:54.234352-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `T3QZ9QD1'
+2023-02-06T08:39:54.238881-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `T25JMQVF'
+2023-02-06T08:39:54.243977-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `VFQTPR80'
+2023-02-06T08:39:54.250753-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `VZBYY7WX'
+2023-02-06T08:39:54.255391-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `WPVQS3YD'
+2023-02-06T08:39:54.260166-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for denomination `ZMHRYQX8'
+2023-02-06T08:39:54.271385-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for signing key `GM40WQZ7'
+2023-02-06T08:39:54.277040-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for signing key `998CAR11'
+2023-02-06T08:39:54.282026-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for signing key `Z5V2Z8EB'
+2023-02-06T08:39:54.286975-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for signing key `GT6FSDDR'
+2023-02-06T08:39:54.291812-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Added offline 
signature for signing key `24CCF2KX'
+2023-02-06T08:39:54.304187-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Executing command 
`NOTIFY XRE2709K6TYDBVARD9Y5SCZY7VHE4D5DKF0R8DHQ4X5T13E8X2X60, '''
+2023-02-06T08:39:54.304762-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO PG poll job active
+2023-02-06T08:39:54.305031-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Received 
notification xre2709k6tydbvard9y5sczy7vhe4d5dkf0r8dhq4x5t13e8x2x60 with extra 
data `'
+2023-02-06T08:39:54.305234-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Received /wire 
update event
+2023-02-06T08:39:54.305434-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Received /keys 
update event
+2023-02-06T08:39:54.305598-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:39:54.308462-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Request for 
`/management/keys' completed (0)
+2023-02-06T08:39:54.309321-0500 
taler-exchange-httpd-17126(NM8750WYWKXSVBGWWEPSNBVJ3R) INFO Request for 
`/management/keys' took 1167 ms
+2023-02-06T08:39:54.309678-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:39:54.310513-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Loading global fees 
from DB: 0
+==17171== 
+==17171== HEAP SUMMARY:
+==17171==     in use at exit: 1,599 bytes in 18 blocks
+==17171==   total heap usage: 25,309 allocs, 25,291 frees, 3,965,698 bytes 
allocated
+==17171== 
+==17171== LEAK SUMMARY:
+==17171==    definitely lost: 0 bytes in 0 blocks
+==17171==    indirectly lost: 0 bytes in 0 blocks
+==17171==      possibly lost: 0 bytes in 0 blocks
+==17171==    still reachable: 1,599 bytes in 18 blocks
+==17171==         suppressed: 0 bytes in 0 blocks
+==17171== Rerun with --leak-check=full to see details of leaked memory
+==17171== 
+==17171== For lists of detected and suppressed errors, rerun with: -s
+==17171== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:39:54.428597-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `offline-sign-fees'
+==17175== Memcheck, a memory error detector
+==17175== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17175== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17175== Command: /home/priscilla/install/bin/taler-exchange-offline -c 
test_merchant_api-cs.conf -L INFO wire-fee now x-taler-bank EUR:0.01 EUR:0.01 
upload
+==17175== 
+2023-02-06T08:39:54.492111-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jan 31 00:13:37 2024
+2023-02-06T08:39:54.502796-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.503014-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.508628-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.508783-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.583657-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.587602-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.591338-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jan 24 00:18:37 2024
+2023-02-06T08:39:54.594610-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.594805-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.598112-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.598263-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.605476-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.608542-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.610930-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jan 17 00:23:37 2024
+2023-02-06T08:39:54.614025-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.614202-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.617508-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.617660-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.626969-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.630613-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.632944-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jan 10 00:28:37 2024
+2023-02-06T08:39:54.636147-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.636346-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.639697-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.639850-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.651385-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.655608-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.658097-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jan 03 00:33:37 2024
+2023-02-06T08:39:54.661271-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.661466-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.664861-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.665010-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.682204-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.687184-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.689737-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Dec 27 00:38:37 2023
+2023-02-06T08:39:54.692966-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.693161-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.696523-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.696676-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.712350-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.717773-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.720197-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Dec 20 00:43:37 2023
+2023-02-06T08:39:54.723361-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.723518-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.726843-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.726996-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.744553-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.750609-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.753042-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Dec 13 00:48:37 2023
+2023-02-06T08:39:54.756234-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.756410-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.759724-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.759877-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.779621-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.786290-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.788772-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Dec 06 00:53:37 2023
+2023-02-06T08:39:54.792008-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.792200-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.795578-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.795731-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.819486-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.826654-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.829051-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Nov 29 00:58:37 2023
+2023-02-06T08:39:54.832247-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.832454-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.835888-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.836107-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.860351-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.868295-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.870767-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Nov 22 01:03:37 2023
+2023-02-06T08:39:54.873938-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.874144-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.877411-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.877564-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.903429-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.911868-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.914335-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Nov 15 01:08:37 2023
+2023-02-06T08:39:54.917466-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.917660-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.920951-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.921101-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.948953-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.958087-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:54.960559-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Nov 08 01:13:37 2023
+2023-02-06T08:39:54.963699-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.963887-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.967212-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:54.967364-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:54.997492-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:54 GMT'
+2023-02-06T08:39:55.007305-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.009751-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Nov 01 02:18:37 2023
+2023-02-06T08:39:55.013048-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.014420-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.017804-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.017959-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.050320-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.061066-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.063534-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Oct 25 02:23:37 2023
+2023-02-06T08:39:55.066757-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.066949-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.070275-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.070427-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.108355-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.119534-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.122007-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Oct 18 02:28:37 2023
+2023-02-06T08:39:55.125177-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.125378-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.128804-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.129021-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.165643-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.177238-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.179647-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Oct 11 02:33:37 2023
+2023-02-06T08:39:55.182892-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.183090-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.186396-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.186564-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.224778-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.237020-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.239450-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Oct 04 02:38:37 2023
+2023-02-06T08:39:55.242699-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.242890-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.246200-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.246351-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.288779-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.301682-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.304114-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Sep 27 02:43:37 2023
+2023-02-06T08:39:55.307437-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.307661-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.311100-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.311283-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.353707-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.367353-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.369781-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Sep 20 02:48:37 2023
+2023-02-06T08:39:55.372968-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.373156-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.376487-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.376640-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.421256-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.435400-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.437858-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Sep 13 02:53:37 2023
+2023-02-06T08:39:55.441004-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.441188-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.444526-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.444678-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.494767-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.509593-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.512048-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Sep 06 02:58:37 2023
+2023-02-06T08:39:55.515277-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.515472-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.518793-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.518946-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.567746-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.584488-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.586870-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Aug 30 03:03:37 2023
+2023-02-06T08:39:55.590013-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.590201-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.593514-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.593666-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.644604-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.661632-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.663978-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Aug 23 03:08:37 2023
+2023-02-06T08:39:55.667173-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.667366-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.670683-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.670836-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.723672-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.741484-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.743955-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Aug 16 03:13:37 2023
+2023-02-06T08:39:55.747173-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.747363-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.750699-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.750851-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.805832-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.827920-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.831605-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Aug 09 03:18:37 2023
+2023-02-06T08:39:55.834843-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.835038-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.838380-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.838561-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.895738-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.915284-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:55.917594-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Aug 02 03:23:37 2023
+2023-02-06T08:39:55.920730-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.920913-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.924230-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:55.924383-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:55.983349-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:55 GMT'
+2023-02-06T08:39:56.004172-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.006534-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jul 26 03:28:37 2023
+2023-02-06T08:39:56.009675-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.009864-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.013190-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.013351-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.074165-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.021272-0500 taler-exchange-offline-17175 INFO Using master 
public key HGYF3P1M
+2023-02-06T08:39:56.094473-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.096842-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jul 19 03:33:37 2023
+2023-02-06T08:39:56.099988-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.100176-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.103568-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.103720-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.166869-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.191225-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.193650-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jul 12 03:38:37 2023
+2023-02-06T08:39:56.196816-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.197006-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.200385-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.200538-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.266216-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.289740-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.293071-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jul 05 03:43:37 2023
+2023-02-06T08:39:56.296291-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.296485-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.299867-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.300020-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.367194-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.389300-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.391662-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jun 28 03:48:37 2023
+2023-02-06T08:39:56.394895-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.395087-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.398394-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.398555-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.467689-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.490396-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.492765-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jun 21 03:53:37 2023
+2023-02-06T08:39:56.495928-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.496126-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.499466-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.499618-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.574050-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.597371-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.599748-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jun 14 03:58:37 2023
+2023-02-06T08:39:56.603652-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.603871-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.607708-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.607884-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.678312-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.702895-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.705132-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Jun 07 04:03:37 2023
+2023-02-06T08:39:56.710370-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.710672-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.716296-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.716555-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.789022-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.813810-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.816060-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed May 31 04:08:37 2023
+2023-02-06T08:39:56.821516-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.821801-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.827418-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.827669-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.901878-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.930686-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:56 GMT'
+2023-02-06T08:39:56.933027-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed May 24 04:13:37 2023
+2023-02-06T08:39:56.938370-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.938679-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:56.944262-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:56.944518-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.020937-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.047042-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.049263-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed May 17 04:18:37 2023
+2023-02-06T08:39:57.054590-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.054873-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.060472-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.060747-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.139467-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.166605-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.168821-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed May 10 04:23:37 2023
+2023-02-06T08:39:57.174148-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.174441-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.180123-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.180378-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.262482-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.293867-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.296310-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed May 03 04:28:37 2023
+2023-02-06T08:39:57.301633-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.301928-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.307557-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.307807-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.389938-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.417463-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.420092-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Apr 26 04:33:37 2023
+2023-02-06T08:39:57.425256-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.425534-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.431134-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.431389-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.515338-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.543839-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.546076-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Apr 19 04:38:37 2023
+2023-02-06T08:39:57.551394-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.551687-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.557274-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.557529-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.644725-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.678187-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.680545-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Apr 12 04:43:37 2023
+2023-02-06T08:39:57.685881-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.686177-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.691871-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.692127-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.781949-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.811457-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.813707-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Apr 05 04:48:37 2023
+2023-02-06T08:39:57.819100-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.819397-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.825062-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.825318-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.916504-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.946963-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:57 GMT'
+2023-02-06T08:39:57.949321-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Mar 29 04:53:37 2023
+2023-02-06T08:39:57.954714-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.955006-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:57.960643-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:57.960899-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.055174-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.089698-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.092075-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Mar 22 04:58:37 2023
+2023-02-06T08:39:58.097437-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:58.097737-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.103448-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:58.103704-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.200362-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.233152-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.235469-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Mar 15 05:03:37 2023
+2023-02-06T08:39:58.240771-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:58.241067-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.246878-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:58.247134-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.347186-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.380480-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.382779-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Mar 08 04:08:37 2023
+2023-02-06T08:39:58.388117-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:58.388415-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.394118-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:58.394374-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.455109-0500 .libs/test_merchant_api_cs-16942 INFO Received 
keys from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 
31 19:00:00 1969.
+2023-02-06T08:39:58.455360-0500 .libs/test_merchant_api_cs-16942 WARNING 
Exchange failed to give expiration time, assuming in 1 h
+2023-02-06T08:39:58.455561-0500 .libs/test_merchant_api_cs-16942 WARNING 
Failed to receive /keys response from exchange http://localhost:8081/
+2023-02-06T08:39:58.496473-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.529841-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.532100-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Mar 01 04:13:37 2023
+2023-02-06T08:39:58.537404-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:58.537701-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.543334-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:58.543589-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.643574-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.678426-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.680682-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Feb 22 04:18:37 2023
+2023-02-06T08:39:58.685927-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:58.686218-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.691845-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:58.692100-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.803270-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.837892-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.840170-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Feb 15 04:23:37 2023
+2023-02-06T08:39:58.845453-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:58.845752-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.851458-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:58.851730-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:58.960471-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.995655-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:58 GMT'
+2023-02-06T08:39:58.998088-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Feb 08 04:28:37 2023
+2023-02-06T08:39:59.003375-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:59.003675-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:59.009318-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:59.009576-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:59.116790-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:59 GMT'
+2023-02-06T08:39:59.153124-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:59 GMT'
+2023-02-06T08:39:59.158891-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Creating /keys at 
cherry pick date Wed Feb 01 04:33:37 2023
+2023-02-06T08:39:59.164157-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:59.164467-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:59.170048-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:39:59.170304-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:39:59.368552-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:59 GMT'
+2023-02-06T08:39:59.444945-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 13:39:59 GMT'
+2023-02-06T08:39:59.468690-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Filtering /keys by 
cherry pick date Wed Dec 31 19:00:00 1969 found entry 4292010656/53
+2023-02-06T08:39:59.469970-0500 
taler-exchange-httpd-17126(Y7ZR6PTQ678W7QF777VZWTKSE0) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:39:59.470682-0500 
taler-exchange-httpd-17126(Y7ZR6PTQ678W7QF777VZWTKSE0) INFO Filtering /keys by 
cherry pick date Wed Dec 31 19:00:00 1969 found entry 4292010656/53
+2023-02-06T08:39:59.470969-0500 
taler-exchange-httpd-17126(HMENEXZV2P1YBS6SGR8904DJMR) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:39:59.471583-0500 
taler-exchange-httpd-17126(HMENEXZV2P1YBS6SGR8904DJMR) INFO Filtering /keys by 
cherry pick date Wed Dec 31 19:00:00 1969 found entry 4292010656/53
+2023-02-06T08:39:59.474574-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Request for `/keys' 
completed (0)
+2023-02-06T08:39:59.475010-0500 
taler-exchange-httpd-17126(XFY5FSEV4Y7RHT4X3NA31YX0ZC) INFO Request for `/keys' 
took 13 s
+2023-02-06T08:39:59.475207-0500 
taler-exchange-httpd-17126(Y7ZR6PTQ678W7QF777VZWTKSE0) INFO Request for `/keys' 
completed (0)
+2023-02-06T08:39:59.475437-0500 
taler-exchange-httpd-17126(Y7ZR6PTQ678W7QF777VZWTKSE0) INFO Request for `/keys' 
took 12 s
+2023-02-06T08:39:59.475813-0500 
taler-exchange-httpd-17126(HMENEXZV2P1YBS6SGR8904DJMR) INFO Request for `/keys' 
completed (0)
+2023-02-06T08:39:59.476037-0500 
taler-exchange-httpd-17126(HMENEXZV2P1YBS6SGR8904DJMR) INFO Request for `/keys' 
took 8 s
+2023-02-06T08:39:59.476296-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:39:59.477624-0500 
taler-exchange-httpd-17126(MXY4RS136Y7DTBBQRV7QSV01N8) INFO Handling request 
(POST) for URL '/management/wire-fee'
+2023-02-06T08:39:59.477813-0500 
taler-exchange-httpd-17126(MXY4RS136Y7DTBBQRV7QSV01N8) INFO Handling request 
(POST) for URL '/management/wire-fee'
+2023-02-06T08:39:59.477978-0500 
taler-exchange-httpd-17126(MXY4RS136Y7DTBBQRV7QSV01N8) INFO Handling request 
(POST) for URL '/management/wire-fee'
+2023-02-06T08:39:59.487749-0500 
taler-exchange-httpd-17126(MXY4RS136Y7DTBBQRV7QSV01N8) INFO Starting 
transaction `add wire fee'
+2023-02-06T08:39:59.514392-0500 
taler-exchange-httpd-17126(MXY4RS136Y7DTBBQRV7QSV01N8) INFO Executing command 
`NOTIFY XAA6QKJBC4S2DFWADVSRJBSD0683ZVFMHRRXZEXRP9773Q0X17750, '''
+2023-02-06T08:39:59.514818-0500 
taler-exchange-httpd-17126(MXY4RS136Y7DTBBQRV7QSV01N8) INFO PG poll job active
+2023-02-06T08:39:59.515015-0500 
taler-exchange-httpd-17126(MXY4RS136Y7DTBBQRV7QSV01N8) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:39:59.515646-0500 
taler-exchange-httpd-17126(MXY4RS136Y7DTBBQRV7QSV01N8) INFO Request for 
`/management/wire-fee' completed (0)
+2023-02-06T08:39:59.516339-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:39:59.517305-0500 
taler-exchange-httpd-17126(VT1DY8XNYB8904945FETSMSKDG) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:39:59.517969-0500 
taler-exchange-httpd-17126(VT1DY8XNYB8904945FETSMSKDG) INFO Filtering /keys by 
cherry pick date Wed Dec 31 19:00:00 1969 found entry 4292010656/53
+2023-02-06T08:39:59.518478-0500 
taler-exchange-httpd-17126(VT1DY8XNYB8904945FETSMSKDG) INFO Request for `/keys' 
completed (0)
+==17175== 
+==17175== HEAP SUMMARY:
+==17175==     in use at exit: 1,599 bytes in 18 blocks
+==17175==   total heap usage: 3,490 allocs, 3,472 frees, 615,334 bytes 
allocated
+==17175== 
+==17175== LEAK SUMMARY:
+==17175==    definitely lost: 0 bytes in 0 blocks
+==17175==    indirectly lost: 0 bytes in 0 blocks
+==17175==      possibly lost: 0 bytes in 0 blocks
+==17175==    still reachable: 1,599 bytes in 18 blocks
+==17175==         suppressed: 0 bytes in 0 blocks
+==17175== Rerun with --leak-check=full to see details of leaked memory
+==17175== 
+==17175== For lists of detected and suppressed errors, rerun with: -s
+==17175== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:39:59.931369-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://localhost:8081/keys' with status 200 and expiration Mon Feb 13 
13:39:59 2023.
+2023-02-06T08:39:59.957149-0500 .libs/test_merchant_api_cs-16942 INFO Received 
keys from URL `http://localhost:8081/keys' with status 200 and expiration Mon 
Feb 13 13:39:59 2023.
+2023-02-06T08:40:01.124618-0500 .libs/test_merchant_api_cs-16942 INFO 
Successfully downloaded exchange's keys
+2023-02-06T08:40:01.128200-0500 .libs/test_merchant_api_cs-16942 INFO 
Connecting to auditor at URL `http://the.auditor/'.
+2023-02-06T08:40:01.148816-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:01.154446-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refetch /keys'
+2023-02-06T08:40:01.155083-0500 .libs/test_merchant_api_cs-16942 INFO cmd 
`refetch /keys' (ip: 4), key generation: 1
+2023-02-06T08:40:01.156545-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `orders-id'
+2023-02-06T08:40:01.158046-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: instance-create-default
+2023-02-06T08:40:01.259492-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:01.271691-0500 taler-merchant-httpd-17112 INFO Successfully 
downloaded exchange's keys
+2023-02-06T08:40:01.274544-0500 taler-merchant-httpd-17112 INFO Connecting to 
auditor at URL `http://the.auditor/'.
+2023-02-06T08:40:01.415085-0500 
taler-merchant-httpd-17112(5C0F7M5SZTABMYMETNM7VDRNDG) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T08:40:01.635025-0500 
taler-merchant-httpd-17112(5C0F7M5SZTABMYMETNM7VDRNDG) INFO Starting merchant 
DB transaction `post /instances'
+2023-02-06T08:40:01.655362-0500 
taler-merchant-httpd-17112(5C0F7M5SZTABMYMETNM7VDRNDG) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T08:40:01.662336-0500 
taler-merchant-httpd-17112(5C0F7M5SZTABMYMETNM7VDRNDG) INFO Generating instance 
settings notification: reload `default'
+2023-02-06T08:40:01.663940-0500 
taler-merchant-httpd-17112(5C0F7M5SZTABMYMETNM7VDRNDG) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'CHJPCRBNDHT00''
+2023-02-06T08:40:01.666437-0500 
taler-merchant-httpd-17112(5C0F7M5SZTABMYMETNM7VDRNDG) INFO PG poll job active
+2023-02-06T08:40:01.668707-0500 
taler-merchant-httpd-17112(5C0F7M5SZTABMYMETNM7VDRNDG) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `default'
+2023-02-06T08:40:01.670403-0500 
taler-merchant-httpd-17112(5C0F7M5SZTABMYMETNM7VDRNDG) INFO Received instance 
settings notification: reload `default'
+2023-02-06T08:40:01.704194-0500 
taler-merchant-httpd-17112(5C0F7M5SZTABMYMETNM7VDRNDG) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:01.708305-0500 
taler-merchant-httpd-17112(5C0F7M5SZTABMYMETNM7VDRNDG) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T08:40:01.708374-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/management/instances completed with response code 204
+2023-02-06T08:40:01.709550-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:01.710723-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `orders-id'
+2023-02-06T08:40:01.710912-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: instance-create-kyc-0
+2023-02-06T08:40:01.759972-0500 
taler-merchant-httpd-17112(301MXAYKQDAQVYW4BWB65EHHD0) INFO Handling request 
(GET) for URL '/private/kyc'
+2023-02-06T08:40:01.767767-0500 
taler-merchant-httpd-17112(301MXAYKQDAQVYW4BWB65EHHD0) INFO Finished handling 
request for `/private/kyc' with MHD termination code 0
+2023-02-06T08:40:01.770009-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `orders-id'
+2023-02-06T08:40:01.770254-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-4
+2023-02-06T08:40:01.801399-0500 
taler-merchant-httpd-17112(X9QTF3CX48M9AE5FV0JE1YS6VG) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:01.950863-0500 
taler-merchant-httpd-17112(X9QTF3CX48M9AE5FV0JE1YS6VG) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:40:01.959983-0500 
taler-merchant-httpd-17112(X9QTF3CX48M9AE5FV0JE1YS6VG) INFO Notifying clients 
of new order 1 at X6Q9M877
+2023-02-06T08:40:01.960374-0500 
taler-merchant-httpd-17112(X9QTF3CX48M9AE5FV0JE1YS6VG) INFO Executing command 
`NOTIFY XQD4GJZYBNQEFGXPKGV1AR91BSJ3DMH6RDHZND7VS9B40CC36JW20, 
'0000000000002005YG42NWKE80000000''
+2023-02-06T08:40:01.960921-0500 
taler-merchant-httpd-17112(X9QTF3CX48M9AE5FV0JE1YS6VG) INFO PG poll job active
+2023-02-06T08:40:01.961119-0500 
taler-merchant-httpd-17112(X9QTF3CX48M9AE5FV0JE1YS6VG) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:01.961482-0500 
taler-merchant-httpd-17112(X9QTF3CX48M9AE5FV0JE1YS6VG) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T08:40:01.978089-0500 
taler-merchant-httpd-17112(X9QTF3CX48M9AE5FV0JE1YS6VG) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:01.981692-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:01.987626-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `orders-id'
+2023-02-06T08:40:01.987859-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-4
+2023-02-06T08:40:02.001645-0500 .libs/test_merchant_api_cs-16942 INFO Getting 
order status from http://localhost:8080/private/orders/4?transfer=YES
+2023-02-06T08:40:02.005219-0500 
taler-merchant-httpd-17112(WJS4QGJXMDCG6KZ4RCT0C9GE24) INFO Handling request 
(GET) for URL '/private/orders/4'
+2023-02-06T08:40:02.025917-0500 
taler-merchant-httpd-17112(WJS4QGJXMDCG6KZ4RCT0C9GE24) INFO Finished handling 
request for `/private/orders/4' with MHD termination code 0
+2023-02-06T08:40:02.034219-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/private/orders/$ID completed with status 200
+2023-02-06T08:40:02.047826-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `orders-id'
+2023-02-06T08:40:02.048047-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: delete-order-4
+2023-02-06T08:40:02.054188-0500 
taler-merchant-httpd-17112(9X8F4A56ZJ6A1VDQGS44FYC7CR) INFO Handling request 
(DELETE) for URL '/private/orders/4'
+2023-02-06T08:40:02.237892-0500 
taler-merchant-httpd-17112(9X8F4A56ZJ6A1VDQGS44FYC7CR) INFO Finished handling 
request for `/private/orders/4' with MHD termination code 0
+2023-02-06T08:40:02.240735-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `orders-id'
+2023-02-06T08:40:02.240986-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: purge-default
+2023-02-06T08:40:02.247003-0500 
taler-merchant-httpd-17112(43NMXXSS3Q6HYKBKAAHQV4K4NR) INFO Handling request 
(DELETE) for URL '/management/instances/default'
+2023-02-06T08:40:02.314997-0500 
taler-merchant-httpd-17112(43NMXXSS3Q6HYKBKAAHQV4K4NR) INFO Generating instance 
settings notification: reload `default'
+2023-02-06T08:40:02.315420-0500 
taler-merchant-httpd-17112(43NMXXSS3Q6HYKBKAAHQV4K4NR) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'CHJPCRBNDHT00''
+2023-02-06T08:40:02.316143-0500 
taler-merchant-httpd-17112(43NMXXSS3Q6HYKBKAAHQV4K4NR) INFO PG poll job active
+2023-02-06T08:40:02.316632-0500 
taler-merchant-httpd-17112(43NMXXSS3Q6HYKBKAAHQV4K4NR) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `default'
+2023-02-06T08:40:02.316905-0500 
taler-merchant-httpd-17112(43NMXXSS3Q6HYKBKAAHQV4K4NR) INFO Received instance 
settings notification: reload `default'
+2023-02-06T08:40:02.318208-0500 
taler-merchant-httpd-17112(43NMXXSS3Q6HYKBKAAHQV4K4NR) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.319049-0500 
taler-merchant-httpd-17112(43NMXXSS3Q6HYKBKAAHQV4K4NR) INFO Finished handling 
request for `/management/instances/default' with MHD termination code 0
+2023-02-06T08:40:02.321981-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `orders-id'
+2023-02-06T08:40:02.322916-0500 .libs/test_merchant_api_cs-16942 INFO Exiting 
from batch: orders-id
+2023-02-06T08:40:02.323826-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `config'
+2023-02-06T08:40:02.328619-0500 
taler-merchant-httpd-17112(5C2TDVJE9GS7X6TMPYMQNXK6SR) INFO Handling request 
(GET) for URL '/config'
+2023-02-06T08:40:02.332607-0500 
taler-merchant-httpd-17112(5C2TDVJE9GS7X6TMPYMQNXK6SR) INFO Finished handling 
request for `/config' with MHD termination code 0
+2023-02-06T08:40:02.336463-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instances-empty'
+2023-02-06T08:40:02.340733-0500 
taler-merchant-httpd-17112(VS3SHJVP1MYE95Y8M7KJ318WSM) INFO Handling request 
(GET) for URL '/management/instances'
+2023-02-06T08:40:02.346241-0500 
taler-merchant-httpd-17112(VS3SHJVP1MYE95Y8M7KJ318WSM) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T08:40:02.350936-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-create-default-setup'
+2023-02-06T08:40:02.356482-0500 
taler-merchant-httpd-17112(23XBGJ0BMRP0Q88NWT216J4DZ0) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T08:40:02.364823-0500 
taler-merchant-httpd-17112(23XBGJ0BMRP0Q88NWT216J4DZ0) INFO Starting merchant 
DB transaction `post /instances'
+2023-02-06T08:40:02.367766-0500 
taler-merchant-httpd-17112(23XBGJ0BMRP0Q88NWT216J4DZ0) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T08:40:02.380859-0500 
taler-merchant-httpd-17112(23XBGJ0BMRP0Q88NWT216J4DZ0) INFO Generating instance 
settings notification: reload `default'
+2023-02-06T08:40:02.381223-0500 
taler-merchant-httpd-17112(23XBGJ0BMRP0Q88NWT216J4DZ0) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'CHJPCRBNDHT00''
+2023-02-06T08:40:02.381830-0500 
taler-merchant-httpd-17112(23XBGJ0BMRP0Q88NWT216J4DZ0) INFO PG poll job active
+2023-02-06T08:40:02.382309-0500 
taler-merchant-httpd-17112(23XBGJ0BMRP0Q88NWT216J4DZ0) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `default'
+2023-02-06T08:40:02.382628-0500 
taler-merchant-httpd-17112(23XBGJ0BMRP0Q88NWT216J4DZ0) INFO Received instance 
settings notification: reload `default'
+2023-02-06T08:40:02.385424-0500 
taler-merchant-httpd-17112(23XBGJ0BMRP0Q88NWT216J4DZ0) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.386041-0500 
taler-merchant-httpd-17112(23XBGJ0BMRP0Q88NWT216J4DZ0) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T08:40:02.386732-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/management/instances completed with response code 204
+2023-02-06T08:40:02.387227-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-create-i1'
+2023-02-06T08:40:02.393549-0500 
taler-merchant-httpd-17112(S8CTGN2Y33Y1RP182KTG3TRS5M) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T08:40:02.402829-0500 
taler-merchant-httpd-17112(S8CTGN2Y33Y1RP182KTG3TRS5M) INFO Starting merchant 
DB transaction `post /instances'
+2023-02-06T08:40:02.405308-0500 
taler-merchant-httpd-17112(S8CTGN2Y33Y1RP182KTG3TRS5M) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T08:40:02.414676-0500 
taler-merchant-httpd-17112(S8CTGN2Y33Y1RP182KTG3TRS5M) INFO Generating instance 
settings notification: reload `i1'
+2023-02-06T08:40:02.415046-0500 
taler-merchant-httpd-17112(S8CTGN2Y33Y1RP182KTG3TRS5M) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RG0''
+2023-02-06T08:40:02.415695-0500 
taler-merchant-httpd-17112(S8CTGN2Y33Y1RP182KTG3TRS5M) INFO PG poll job active
+2023-02-06T08:40:02.416031-0500 
taler-merchant-httpd-17112(S8CTGN2Y33Y1RP182KTG3TRS5M) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1'
+2023-02-06T08:40:02.416258-0500 
taler-merchant-httpd-17112(S8CTGN2Y33Y1RP182KTG3TRS5M) INFO Received instance 
settings notification: reload `i1'
+2023-02-06T08:40:02.419080-0500 
taler-merchant-httpd-17112(S8CTGN2Y33Y1RP182KTG3TRS5M) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.419775-0500 
taler-merchant-httpd-17112(S8CTGN2Y33Y1RP182KTG3TRS5M) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T08:40:02.420305-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/management/instances completed with response code 204
+2023-02-06T08:40:02.420964-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instances-get-i1'
+2023-02-06T08:40:02.425291-0500 
taler-merchant-httpd-17112(PGVJWDJBETPZTM5N9VNNMRTRXG) INFO Handling request 
(GET) for URL '/management/instances'
+2023-02-06T08:40:02.435137-0500 
taler-merchant-httpd-17112(PGVJWDJBETPZTM5N9VNNMRTRXG) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T08:40:02.451883-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instances-get-i1'
+2023-02-06T08:40:02.456800-0500 
taler-merchant-httpd-17112(A3FBMZXM2GHX8ARS47WC93P4CM) INFO Handling request 
(GET) for URL '/instances/i1/private'
+2023-02-06T08:40:02.472325-0500 
taler-merchant-httpd-17112(A3FBMZXM2GHX8ARS47WC93P4CM) INFO Finished handling 
request for `/instances/i1/private' with MHD termination code 0
+2023-02-06T08:40:02.497560-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-patch-i1-bad-currency'
+2023-02-06T08:40:02.509555-0500 
taler-merchant-httpd-17112(Q87D1PV2GB4NPQX6FD2MZPYEBR) INFO Handling request 
(PATCH) for URL '/management/instances/i1'
+2023-02-06T08:40:02.517165-0500 
taler-merchant-httpd-17112(Q87D1PV2GB4NPQX6FD2MZPYEBR) WARNING External 
protocol violation detected at json_helper.c:112.
+2023-02-06T08:40:02.518607-0500 
taler-merchant-httpd-17112(Q87D1PV2GB4NPQX6FD2MZPYEBR) WARNING Expected 
currency `EUR', but amount used currency `USD' in field `default_max_wire_fee'
+2023-02-06T08:40:02.524784-0500 
taler-merchant-httpd-17112(Q87D1PV2GB4NPQX6FD2MZPYEBR) INFO Finished handling 
request for `/management/instances/i1' with MHD termination code 0
+2023-02-06T08:40:02.528484-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/instances/$ID completed with response code 400
+2023-02-06T08:40:02.532462-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-patch-i1'
+2023-02-06T08:40:02.537993-0500 
taler-merchant-httpd-17112(Y3ER7P072FABQTQNK36AWZNE1M) INFO Handling request 
(PATCH) for URL '/management/instances/i1'
+2023-02-06T08:40:02.560326-0500 
taler-merchant-httpd-17112(Y3ER7P072FABQTQNK36AWZNE1M) INFO Starting merchant 
DB transaction `PATCH /instances'
+2023-02-06T08:40:02.568773-0500 
taler-merchant-httpd-17112(Y3ER7P072FABQTQNK36AWZNE1M) INFO Adding NEW account 
`payto://iban/CH9300762011623852957?receiver-name=Test'
+2023-02-06T08:40:02.573081-0500 
taler-merchant-httpd-17112(Y3ER7P072FABQTQNK36AWZNE1M) INFO Committing merchant 
DB transaction PATCH /instances
+2023-02-06T08:40:02.585933-0500 
taler-merchant-httpd-17112(Y3ER7P072FABQTQNK36AWZNE1M) INFO Generating instance 
settings notification: reload `i1'
+2023-02-06T08:40:02.586301-0500 
taler-merchant-httpd-17112(Y3ER7P072FABQTQNK36AWZNE1M) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RG0''
+2023-02-06T08:40:02.587004-0500 
taler-merchant-httpd-17112(Y3ER7P072FABQTQNK36AWZNE1M) INFO PG poll job active
+2023-02-06T08:40:02.587404-0500 
taler-merchant-httpd-17112(Y3ER7P072FABQTQNK36AWZNE1M) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1'
+2023-02-06T08:40:02.587670-0500 
taler-merchant-httpd-17112(Y3ER7P072FABQTQNK36AWZNE1M) INFO Received instance 
settings notification: reload `i1'
+2023-02-06T08:40:02.592115-0500 
taler-merchant-httpd-17112(Y3ER7P072FABQTQNK36AWZNE1M) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.593157-0500 
taler-merchant-httpd-17112(Y3ER7P072FABQTQNK36AWZNE1M) INFO Finished handling 
request for `/management/instances/i1' with MHD termination code 0
+2023-02-06T08:40:02.593872-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/instances/$ID completed with response code 204
+2023-02-06T08:40:02.594737-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instances-get-i1-2'
+2023-02-06T08:40:02.598100-0500 
taler-merchant-httpd-17112(C10BVD4B66KTXTDDSM2PDM39K8) INFO Handling request 
(GET) for URL '/instances/i1/private'
+2023-02-06T08:40:02.603393-0500 
taler-merchant-httpd-17112(C10BVD4B66KTXTDDSM2PDM39K8) INFO Finished handling 
request for `/instances/i1/private' with MHD termination code 0
+2023-02-06T08:40:02.616956-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-patch-i1-inactivate-account'
+2023-02-06T08:40:02.623524-0500 
taler-merchant-httpd-17112(QFDTB1ZC1667929KHWSF2YJDAM) INFO Handling request 
(PATCH) for URL '/management/instances/i1'
+2023-02-06T08:40:02.625757-0500 
taler-merchant-httpd-17112(QFDTB1ZC1667929KHWSF2YJDAM) INFO Starting merchant 
DB transaction `PATCH /instances'
+2023-02-06T08:40:02.634596-0500 
taler-merchant-httpd-17112(QFDTB1ZC1667929KHWSF2YJDAM) INFO Existing account 
`payto://iban/CH9300762011623852957?receiver-name=Test' not found, inactivating 
it.
+2023-02-06T08:40:02.637097-0500 
taler-merchant-httpd-17112(QFDTB1ZC1667929KHWSF2YJDAM) INFO Committing merchant 
DB transaction PATCH /instances
+2023-02-06T08:40:02.647697-0500 
taler-merchant-httpd-17112(QFDTB1ZC1667929KHWSF2YJDAM) INFO Generating instance 
settings notification: reload `i1'
+2023-02-06T08:40:02.648066-0500 
taler-merchant-httpd-17112(QFDTB1ZC1667929KHWSF2YJDAM) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RG0''
+2023-02-06T08:40:02.648770-0500 
taler-merchant-httpd-17112(QFDTB1ZC1667929KHWSF2YJDAM) INFO PG poll job active
+2023-02-06T08:40:02.649155-0500 
taler-merchant-httpd-17112(QFDTB1ZC1667929KHWSF2YJDAM) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1'
+2023-02-06T08:40:02.649420-0500 
taler-merchant-httpd-17112(QFDTB1ZC1667929KHWSF2YJDAM) INFO Received instance 
settings notification: reload `i1'
+2023-02-06T08:40:02.652433-0500 
taler-merchant-httpd-17112(QFDTB1ZC1667929KHWSF2YJDAM) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.653058-0500 
taler-merchant-httpd-17112(QFDTB1ZC1667929KHWSF2YJDAM) INFO Finished handling 
request for `/management/instances/i1' with MHD termination code 0
+2023-02-06T08:40:02.653820-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/instances/$ID completed with response code 204
+2023-02-06T08:40:02.654535-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instances-get-i1-3'
+2023-02-06T08:40:02.657877-0500 
taler-merchant-httpd-17112(E4M50T0HP9ZY72RGJHF6Q83E38) INFO Handling request 
(GET) for URL '/instances/i1/private'
+2023-02-06T08:40:02.662128-0500 
taler-merchant-httpd-17112(E4M50T0HP9ZY72RGJHF6Q83E38) INFO Finished handling 
request for `/instances/i1/private' with MHD termination code 0
+2023-02-06T08:40:02.667630-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instances-get-i2-nx'
+2023-02-06T08:40:02.671519-0500 
taler-merchant-httpd-17112(DAM3FHYAS3SPZC8JDEE4MTG6DG) INFO Handling request 
(GET) for URL '/instances/i2/private'
+2023-02-06T08:40:02.672958-0500 
taler-merchant-httpd-17112(DAM3FHYAS3SPZC8JDEE4MTG6DG) WARNING Instance 
`(null)' not known
+2023-02-06T08:40:02.679197-0500 
taler-merchant-httpd-17112(DAM3FHYAS3SPZC8JDEE4MTG6DG) INFO Finished handling 
request for `/instances/i2/private' with MHD termination code 0
+2023-02-06T08:40:02.681667-0500 .libs/test_merchant_api_cs-16942 WARNING 
Attempt to lookup command for empty label
+2023-02-06T08:40:02.682886-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-create-bad-currency'
+2023-02-06T08:40:02.689668-0500 
taler-merchant-httpd-17112(RY48PDVX9N3Y4EGHJGM454V8AR) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T08:40:02.691565-0500 
taler-merchant-httpd-17112(RY48PDVX9N3Y4EGHJGM454V8AR) WARNING External 
protocol violation detected at json_helper.c:112.
+2023-02-06T08:40:02.691948-0500 
taler-merchant-httpd-17112(RY48PDVX9N3Y4EGHJGM454V8AR) WARNING Expected 
currency `EUR', but amount used currency `USD' in field `default_max_wire_fee'
+2023-02-06T08:40:02.694762-0500 
taler-merchant-httpd-17112(RY48PDVX9N3Y4EGHJGM454V8AR) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T08:40:02.696119-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/management/instances completed with response code 400
+2023-02-06T08:40:02.697503-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-create-ACL'
+2023-02-06T08:40:02.703837-0500 
taler-merchant-httpd-17112(PYW4V2D21YSGCGK042QFK1H56M) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T08:40:02.711276-0500 
taler-merchant-httpd-17112(PYW4V2D21YSGCGK042QFK1H56M) INFO Starting merchant 
DB transaction `post /instances'
+2023-02-06T08:40:02.713657-0500 
taler-merchant-httpd-17112(PYW4V2D21YSGCGK042QFK1H56M) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T08:40:02.725673-0500 
taler-merchant-httpd-17112(PYW4V2D21YSGCGK042QFK1H56M) INFO Generating instance 
settings notification: reload `i-acl'
+2023-02-06T08:40:02.726077-0500 
taler-merchant-httpd-17112(PYW4V2D21YSGCGK042QFK1H56M) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4PP2RVC00''
+2023-02-06T08:40:02.726695-0500 
taler-merchant-httpd-17112(PYW4V2D21YSGCGK042QFK1H56M) INFO PG poll job active
+2023-02-06T08:40:02.727078-0500 
taler-merchant-httpd-17112(PYW4V2D21YSGCGK042QFK1H56M) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i-acl'
+2023-02-06T08:40:02.727341-0500 
taler-merchant-httpd-17112(PYW4V2D21YSGCGK042QFK1H56M) INFO Received instance 
settings notification: reload `i-acl'
+2023-02-06T08:40:02.730828-0500 
taler-merchant-httpd-17112(PYW4V2D21YSGCGK042QFK1H56M) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.731452-0500 
taler-merchant-httpd-17112(PYW4V2D21YSGCGK042QFK1H56M) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T08:40:02.732086-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/management/instances completed with response code 204
+2023-02-06T08:40:02.732681-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-patch-ACL'
+2023-02-06T08:40:02.738411-0500 
taler-merchant-httpd-17112(1T21P4ER6TP5WJ1YCG7EBADNMC) INFO Handling request 
(PATCH) for URL '/management/instances/i-acl'
+2023-02-06T08:40:02.740376-0500 
taler-merchant-httpd-17112(1T21P4ER6TP5WJ1YCG7EBADNMC) INFO Starting merchant 
DB transaction `PATCH /instances'
+2023-02-06T08:40:02.742526-0500 
taler-merchant-httpd-17112(1T21P4ER6TP5WJ1YCG7EBADNMC) INFO Adding NEW account 
`payto://x-taler-bank/localhost/3?receiver-name=3'
+2023-02-06T08:40:02.744866-0500 
taler-merchant-httpd-17112(1T21P4ER6TP5WJ1YCG7EBADNMC) INFO Committing merchant 
DB transaction PATCH /instances
+2023-02-06T08:40:02.747794-0500 
taler-merchant-httpd-17112(1T21P4ER6TP5WJ1YCG7EBADNMC) INFO Generating instance 
settings notification: reload `i-acl'
+2023-02-06T08:40:02.748159-0500 
taler-merchant-httpd-17112(1T21P4ER6TP5WJ1YCG7EBADNMC) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4PP2RVC00''
+2023-02-06T08:40:02.748862-0500 
taler-merchant-httpd-17112(1T21P4ER6TP5WJ1YCG7EBADNMC) INFO PG poll job active
+2023-02-06T08:40:02.749269-0500 
taler-merchant-httpd-17112(1T21P4ER6TP5WJ1YCG7EBADNMC) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i-acl'
+2023-02-06T08:40:02.749556-0500 
taler-merchant-httpd-17112(1T21P4ER6TP5WJ1YCG7EBADNMC) INFO Received instance 
settings notification: reload `i-acl'
+2023-02-06T08:40:02.752216-0500 
taler-merchant-httpd-17112(1T21P4ER6TP5WJ1YCG7EBADNMC) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.752829-0500 
taler-merchant-httpd-17112(1T21P4ER6TP5WJ1YCG7EBADNMC) INFO Finished handling 
request for `/management/instances/i-acl' with MHD termination code 0
+2023-02-06T08:40:02.753460-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/instances/$ID completed with response code 204
+2023-02-06T08:40:02.754022-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-create-i2'
+2023-02-06T08:40:02.759900-0500 
taler-merchant-httpd-17112(125RENW91AJDXH4H81QE6KA5JM) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T08:40:02.768788-0500 
taler-merchant-httpd-17112(125RENW91AJDXH4H81QE6KA5JM) INFO Starting merchant 
DB transaction `post /instances'
+2023-02-06T08:40:02.771563-0500 
taler-merchant-httpd-17112(125RENW91AJDXH4H81QE6KA5JM) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T08:40:02.783507-0500 
taler-merchant-httpd-17112(125RENW91AJDXH4H81QE6KA5JM) INFO Generating instance 
settings notification: reload `i2'
+2023-02-06T08:40:02.783871-0500 
taler-merchant-httpd-17112(125RENW91AJDXH4H81QE6KA5JM) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4S00''
+2023-02-06T08:40:02.784491-0500 
taler-merchant-httpd-17112(125RENW91AJDXH4H81QE6KA5JM) INFO PG poll job active
+2023-02-06T08:40:02.784867-0500 
taler-merchant-httpd-17112(125RENW91AJDXH4H81QE6KA5JM) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i2'
+2023-02-06T08:40:02.785129-0500 
taler-merchant-httpd-17112(125RENW91AJDXH4H81QE6KA5JM) INFO Received instance 
settings notification: reload `i2'
+2023-02-06T08:40:02.787876-0500 
taler-merchant-httpd-17112(125RENW91AJDXH4H81QE6KA5JM) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.788512-0500 
taler-merchant-httpd-17112(125RENW91AJDXH4H81QE6KA5JM) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T08:40:02.789033-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/management/instances completed with response code 204
+2023-02-06T08:40:02.789585-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-create-i2-idem'
+2023-02-06T08:40:02.797333-0500 
taler-merchant-httpd-17112(AXYNBVARX05ABCWQ1S72M8DNWG) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T08:40:02.808470-0500 
taler-merchant-httpd-17112(AXYNBVARX05ABCWQ1S72M8DNWG) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T08:40:02.809054-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/management/instances completed with response code 204
+2023-02-06T08:40:02.809593-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-create-i2-non-idem'
+2023-02-06T08:40:02.815268-0500 
taler-merchant-httpd-17112(6ZH8XVJ243P6P5SM2ZVSF87YPM) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T08:40:02.822236-0500 
taler-merchant-httpd-17112(6ZH8XVJ243P6P5SM2ZVSF87YPM) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T08:40:02.823609-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/management/instances completed with response code 409
+2023-02-06T08:40:02.824174-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-delete-i2'
+2023-02-06T08:40:02.828549-0500 
taler-merchant-httpd-17112(B6F6V7SMXWNM3QZ0AZBWZ051TW) INFO Handling request 
(DELETE) for URL '/management/instances/i2'
+2023-02-06T08:40:02.836728-0500 
taler-merchant-httpd-17112(B6F6V7SMXWNM3QZ0AZBWZ051TW) INFO Generating instance 
settings notification: reload `i2'
+2023-02-06T08:40:02.837142-0500 
taler-merchant-httpd-17112(B6F6V7SMXWNM3QZ0AZBWZ051TW) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4S00''
+2023-02-06T08:40:02.837830-0500 
taler-merchant-httpd-17112(B6F6V7SMXWNM3QZ0AZBWZ051TW) INFO PG poll job active
+2023-02-06T08:40:02.838229-0500 
taler-merchant-httpd-17112(B6F6V7SMXWNM3QZ0AZBWZ051TW) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i2'
+2023-02-06T08:40:02.838488-0500 
taler-merchant-httpd-17112(B6F6V7SMXWNM3QZ0AZBWZ051TW) INFO Received instance 
settings notification: reload `i2'
+2023-02-06T08:40:02.841547-0500 
taler-merchant-httpd-17112(B6F6V7SMXWNM3QZ0AZBWZ051TW) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.842188-0500 
taler-merchant-httpd-17112(B6F6V7SMXWNM3QZ0AZBWZ051TW) INFO Finished handling 
request for `/management/instances/i2' with MHD termination code 0
+2023-02-06T08:40:02.843121-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instances-get-i2-post-deletion'
+2023-02-06T08:40:02.846581-0500 
taler-merchant-httpd-17112(FTQSK2YYKTTCPVE1FE60T6ZX0R) INFO Handling request 
(GET) for URL '/instances/i2/private'
+2023-02-06T08:40:02.847780-0500 
taler-merchant-httpd-17112(FTQSK2YYKTTCPVE1FE60T6ZX0R) WARNING Instance `i2' 
was deleted
+2023-02-06T08:40:02.849939-0500 
taler-merchant-httpd-17112(FTQSK2YYKTTCPVE1FE60T6ZX0R) INFO Finished handling 
request for `/instances/i2/private' with MHD termination code 0
+2023-02-06T08:40:02.851706-0500 .libs/test_merchant_api_cs-16942 WARNING 
Attempt to lookup command for empty label
+2023-02-06T08:40:02.852237-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-delete-then-purge-i2'
+2023-02-06T08:40:02.855706-0500 
taler-merchant-httpd-17112(MADZY1G8ZNXNSXHZEWSDP8JD54) INFO Handling request 
(DELETE) for URL '/management/instances/i2'
+2023-02-06T08:40:02.869797-0500 
taler-merchant-httpd-17112(MADZY1G8ZNXNSXHZEWSDP8JD54) INFO Generating instance 
settings notification: reload `i2'
+2023-02-06T08:40:02.870158-0500 
taler-merchant-httpd-17112(MADZY1G8ZNXNSXHZEWSDP8JD54) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4S00''
+2023-02-06T08:40:02.870942-0500 
taler-merchant-httpd-17112(MADZY1G8ZNXNSXHZEWSDP8JD54) INFO PG poll job active
+2023-02-06T08:40:02.871327-0500 
taler-merchant-httpd-17112(MADZY1G8ZNXNSXHZEWSDP8JD54) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i2'
+2023-02-06T08:40:02.871592-0500 
taler-merchant-httpd-17112(MADZY1G8ZNXNSXHZEWSDP8JD54) INFO Received instance 
settings notification: reload `i2'
+2023-02-06T08:40:02.872602-0500 
taler-merchant-httpd-17112(MADZY1G8ZNXNSXHZEWSDP8JD54) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.873187-0500 
taler-merchant-httpd-17112(MADZY1G8ZNXNSXHZEWSDP8JD54) INFO Finished handling 
request for `/management/instances/i2' with MHD termination code 0
+2023-02-06T08:40:02.874009-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-purge-i1'
+2023-02-06T08:40:02.877534-0500 
taler-merchant-httpd-17112(2WTHYVJ253ER3QZ3N5YSPTZVZ0) INFO Handling request 
(DELETE) for URL '/management/instances/i1'
+2023-02-06T08:40:02.892049-0500 
taler-merchant-httpd-17112(2WTHYVJ253ER3QZ3N5YSPTZVZ0) INFO Generating instance 
settings notification: reload `i1'
+2023-02-06T08:40:02.892407-0500 
taler-merchant-httpd-17112(2WTHYVJ253ER3QZ3N5YSPTZVZ0) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RG0''
+2023-02-06T08:40:02.893063-0500 
taler-merchant-httpd-17112(2WTHYVJ253ER3QZ3N5YSPTZVZ0) INFO PG poll job active
+2023-02-06T08:40:02.893435-0500 
taler-merchant-httpd-17112(2WTHYVJ253ER3QZ3N5YSPTZVZ0) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1'
+2023-02-06T08:40:02.893695-0500 
taler-merchant-httpd-17112(2WTHYVJ253ER3QZ3N5YSPTZVZ0) INFO Received instance 
settings notification: reload `i1'
+2023-02-06T08:40:02.895344-0500 
taler-merchant-httpd-17112(2WTHYVJ253ER3QZ3N5YSPTZVZ0) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.895920-0500 
taler-merchant-httpd-17112(2WTHYVJ253ER3QZ3N5YSPTZVZ0) INFO Finished handling 
request for `/management/instances/i1' with MHD termination code 0
+2023-02-06T08:40:02.896701-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-purge-then-delete-i1'
+2023-02-06T08:40:02.900434-0500 
taler-merchant-httpd-17112(XBD5MGQ6JFT0KR7WT2HRYNGEX8) INFO Handling request 
(DELETE) for URL '/management/instances/i1'
+2023-02-06T08:40:02.902739-0500 
taler-merchant-httpd-17112(XBD5MGQ6JFT0KR7WT2HRYNGEX8) INFO Finished handling 
request for `/management/instances/i1' with MHD termination code 0
+2023-02-06T08:40:02.904239-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-purge-i-acl-middle'
+2023-02-06T08:40:02.907772-0500 
taler-merchant-httpd-17112(K7R4VK80TY827KCV6PDTRRH6K4) INFO Handling request 
(DELETE) for URL '/management/instances/i-acl'
+2023-02-06T08:40:02.914288-0500 
taler-merchant-httpd-17112(K7R4VK80TY827KCV6PDTRRH6K4) INFO Generating instance 
settings notification: reload `i-acl'
+2023-02-06T08:40:02.914748-0500 
taler-merchant-httpd-17112(K7R4VK80TY827KCV6PDTRRH6K4) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4PP2RVC00''
+2023-02-06T08:40:02.915487-0500 
taler-merchant-httpd-17112(K7R4VK80TY827KCV6PDTRRH6K4) INFO PG poll job active
+2023-02-06T08:40:02.915872-0500 
taler-merchant-httpd-17112(K7R4VK80TY827KCV6PDTRRH6K4) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i-acl'
+2023-02-06T08:40:02.916137-0500 
taler-merchant-httpd-17112(K7R4VK80TY827KCV6PDTRRH6K4) INFO Received instance 
settings notification: reload `i-acl'
+2023-02-06T08:40:02.917310-0500 
taler-merchant-httpd-17112(K7R4VK80TY827KCV6PDTRRH6K4) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.918062-0500 
taler-merchant-httpd-17112(K7R4VK80TY827KCV6PDTRRH6K4) INFO Finished handling 
request for `/management/instances/i-acl' with MHD termination code 0
+2023-02-06T08:40:02.918916-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-purge-default-middle'
+2023-02-06T08:40:02.922355-0500 
taler-merchant-httpd-17112(09KC5NF05XMD2DHG4S9NPN34BC) INFO Handling request 
(DELETE) for URL '/management/instances/default'
+2023-02-06T08:40:02.936399-0500 
taler-merchant-httpd-17112(09KC5NF05XMD2DHG4S9NPN34BC) INFO Generating instance 
settings notification: reload `default'
+2023-02-06T08:40:02.936765-0500 
taler-merchant-httpd-17112(09KC5NF05XMD2DHG4S9NPN34BC) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'CHJPCRBNDHT00''
+2023-02-06T08:40:02.937450-0500 
taler-merchant-httpd-17112(09KC5NF05XMD2DHG4S9NPN34BC) INFO PG poll job active
+2023-02-06T08:40:02.937840-0500 
taler-merchant-httpd-17112(09KC5NF05XMD2DHG4S9NPN34BC) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `default'
+2023-02-06T08:40:02.938104-0500 
taler-merchant-httpd-17112(09KC5NF05XMD2DHG4S9NPN34BC) INFO Received instance 
settings notification: reload `default'
+2023-02-06T08:40:02.939077-0500 
taler-merchant-httpd-17112(09KC5NF05XMD2DHG4S9NPN34BC) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.939674-0500 
taler-merchant-httpd-17112(09KC5NF05XMD2DHG4S9NPN34BC) INFO Finished handling 
request for `/management/instances/default' with MHD termination code 0
+2023-02-06T08:40:02.940574-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `instance-create-default-after-purge'
+2023-02-06T08:40:02.947383-0500 
taler-merchant-httpd-17112(VR09TG7HQ25GXTTEVME7W6X6ER) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T08:40:02.955886-0500 
taler-merchant-httpd-17112(VR09TG7HQ25GXTTEVME7W6X6ER) INFO Starting merchant 
DB transaction `post /instances'
+2023-02-06T08:40:02.958770-0500 
taler-merchant-httpd-17112(VR09TG7HQ25GXTTEVME7W6X6ER) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T08:40:02.969897-0500 
taler-merchant-httpd-17112(VR09TG7HQ25GXTTEVME7W6X6ER) INFO Generating instance 
settings notification: reload `default'
+2023-02-06T08:40:02.970257-0500 
taler-merchant-httpd-17112(VR09TG7HQ25GXTTEVME7W6X6ER) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'CHJPCRBNDHT00''
+2023-02-06T08:40:02.970968-0500 
taler-merchant-httpd-17112(VR09TG7HQ25GXTTEVME7W6X6ER) INFO PG poll job active
+2023-02-06T08:40:02.971356-0500 
taler-merchant-httpd-17112(VR09TG7HQ25GXTTEVME7W6X6ER) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `default'
+2023-02-06T08:40:02.971621-0500 
taler-merchant-httpd-17112(VR09TG7HQ25GXTTEVME7W6X6ER) INFO Received instance 
settings notification: reload `default'
+2023-02-06T08:40:02.974263-0500 
taler-merchant-httpd-17112(VR09TG7HQ25GXTTEVME7W6X6ER) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:02.974905-0500 
taler-merchant-httpd-17112(VR09TG7HQ25GXTTEVME7W6X6ER) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T08:40:02.975506-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/management/instances completed with response code 204
+2023-02-06T08:40:02.976051-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `get-products-empty'
+2023-02-06T08:40:02.981457-0500 
taler-merchant-httpd-17112(NYZGC2MH5D4TKG39ZTKVKJYW58) INFO Handling request 
(GET) for URL '/private/products'
+2023-02-06T08:40:02.986506-0500 
taler-merchant-httpd-17112(NYZGC2MH5D4TKG39ZTKVKJYW58) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T08:40:02.991357-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `post-products-p1'
+2023-02-06T08:40:03.001831-0500 
taler-merchant-httpd-17112(CW876T15YKPYS0TN0JA3N0ZBCM) INFO Handling request 
(POST) for URL '/private/products'
+2023-02-06T08:40:03.014333-0500 
taler-merchant-httpd-17112(CW876T15YKPYS0TN0JA3N0ZBCM) INFO Starting merchant 
DB transaction `/post products'
+2023-02-06T08:40:03.023269-0500 
taler-merchant-httpd-17112(CW876T15YKPYS0TN0JA3N0ZBCM) INFO Committing merchant 
DB transaction /post products
+2023-02-06T08:40:03.037602-0500 
taler-merchant-httpd-17112(CW876T15YKPYS0TN0JA3N0ZBCM) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T08:40:03.039129-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/products completed with response code 204
+2023-02-06T08:40:03.041469-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `post-products-p1-idem'
+2023-02-06T08:40:03.046702-0500 
taler-merchant-httpd-17112(9BCB633CTAKCQBEMQA2BKYKGV0) INFO Handling request 
(POST) for URL '/private/products'
+2023-02-06T08:40:03.048177-0500 
taler-merchant-httpd-17112(9BCB633CTAKCQBEMQA2BKYKGV0) INFO Starting merchant 
DB transaction `/post products'
+2023-02-06T08:40:03.056073-0500 
taler-merchant-httpd-17112(9BCB633CTAKCQBEMQA2BKYKGV0) INFO Rolling back 
merchant DB transaction `/post products'
+2023-02-06T08:40:03.057669-0500 
taler-merchant-httpd-17112(9BCB633CTAKCQBEMQA2BKYKGV0) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T08:40:03.058308-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/products completed with response code 204
+2023-02-06T08:40:03.058840-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `post-products-p1-non-idem'
+2023-02-06T08:40:03.063978-0500 
taler-merchant-httpd-17112(R6EPWXKN24BCEHQWM97VFP1M34) INFO Handling request 
(POST) for URL '/private/products'
+2023-02-06T08:40:03.065456-0500 
taler-merchant-httpd-17112(R6EPWXKN24BCEHQWM97VFP1M34) INFO Starting merchant 
DB transaction `/post products'
+2023-02-06T08:40:03.067625-0500 
taler-merchant-httpd-17112(R6EPWXKN24BCEHQWM97VFP1M34) INFO Rolling back 
merchant DB transaction `/post products'
+2023-02-06T08:40:03.070878-0500 
taler-merchant-httpd-17112(R6EPWXKN24BCEHQWM97VFP1M34) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T08:40:03.072998-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/products completed with response code 409
+2023-02-06T08:40:03.074414-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `get-products-p1'
+2023-02-06T08:40:03.079142-0500 
taler-merchant-httpd-17112(DQJ6NXB9T0SAFJPN8HS8HBTZQM) INFO Handling request 
(GET) for URL '/private/products'
+2023-02-06T08:40:03.083827-0500 
taler-merchant-httpd-17112(DQJ6NXB9T0SAFJPN8HS8HBTZQM) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T08:40:03.091473-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `get-product-p1'
+2023-02-06T08:40:03.096787-0500 
taler-merchant-httpd-17112(P3N8PHKEEX23NECBEWT4DBDRB4) INFO Handling request 
(GET) for URL '/private/products/product-1'
+2023-02-06T08:40:03.105779-0500 
taler-merchant-httpd-17112(P3N8PHKEEX23NECBEWT4DBDRB4) INFO Finished handling 
request for `/private/products/product-1' with MHD termination code 0
+2023-02-06T08:40:03.121624-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `post-products-p2'
+2023-02-06T08:40:03.126889-0500 
taler-merchant-httpd-17112(R0G9CK0QY60ZFV86YPKTWFC07C) INFO Handling request 
(POST) for URL '/private/products'
+2023-02-06T08:40:03.128347-0500 
taler-merchant-httpd-17112(R0G9CK0QY60ZFV86YPKTWFC07C) INFO Starting merchant 
DB transaction `/post products'
+2023-02-06T08:40:03.130876-0500 
taler-merchant-httpd-17112(R0G9CK0QY60ZFV86YPKTWFC07C) INFO Committing merchant 
DB transaction /post products
+2023-02-06T08:40:03.136822-0500 
taler-merchant-httpd-17112(R0G9CK0QY60ZFV86YPKTWFC07C) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T08:40:03.137358-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/products completed with response code 204
+2023-02-06T08:40:03.137869-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `patch-products-p2'
+2023-02-06T08:40:03.149061-0500 
taler-merchant-httpd-17112(FYH2T3C1JB2XWY9HTT8VJD2308) INFO Handling request 
(PATCH) for URL '/private/products/product-2'
+2023-02-06T08:40:03.171514-0500 
taler-merchant-httpd-17112(FYH2T3C1JB2XWY9HTT8VJD2308) INFO Finished handling 
request for `/private/products/product-2' with MHD termination code 0
+2023-02-06T08:40:03.173516-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/products/$ID completed with response code 204
+2023-02-06T08:40:03.176712-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `get-product-p2'
+2023-02-06T08:40:03.181147-0500 
taler-merchant-httpd-17112(DFN560V7TS2TWTYW89CVQ506G4) INFO Handling request 
(GET) for URL '/private/products/product-2'
+2023-02-06T08:40:03.186004-0500 
taler-merchant-httpd-17112(DFN560V7TS2TWTYW89CVQ506G4) INFO Finished handling 
request for `/private/products/product-2' with MHD termination code 0
+2023-02-06T08:40:03.192662-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `get-product-nx'
+2023-02-06T08:40:03.196731-0500 
taler-merchant-httpd-17112(WXYX1PKMTY778WQ7EXS1Z5EC58) INFO Handling request 
(GET) for URL '/private/products/product-nx'
+2023-02-06T08:40:03.199777-0500 
taler-merchant-httpd-17112(WXYX1PKMTY778WQ7EXS1Z5EC58) INFO Finished handling 
request for `/private/products/product-nx' with MHD termination code 0
+2023-02-06T08:40:03.201637-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `patch-products-p3-nx'
+2023-02-06T08:40:03.206713-0500 
taler-merchant-httpd-17112(HQKQRKRC1CYXPAYMQYWCRMZR5W) INFO Handling request 
(PATCH) for URL '/private/products/product-3'
+2023-02-06T08:40:03.212671-0500 
taler-merchant-httpd-17112(HQKQRKRC1CYXPAYMQYWCRMZR5W) INFO Finished handling 
request for `/private/products/product-3' with MHD termination code 0
+2023-02-06T08:40:03.213870-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/products/$ID completed with response code 404
+2023-02-06T08:40:03.214979-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `get-products-empty'
+2023-02-06T08:40:03.219283-0500 
taler-merchant-httpd-17112(HK8540825WJKZX0G8QR9B2KDY8) INFO Handling request 
(DELETE) for URL '/private/products/p1'
+2023-02-06T08:40:03.225267-0500 
taler-merchant-httpd-17112(HK8540825WJKZX0G8QR9B2KDY8) INFO Finished handling 
request for `/private/products/p1' with MHD termination code 0
+2023-02-06T08:40:03.228463-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `get-products-empty'
+2023-02-06T08:40:03.231122-0500 
taler-merchant-httpd-17112(FB5BZAVBGNNC5JMFXM9BPR6S5R) INFO Handling request 
(DELETE) for URL '/private/products/product-1'
+2023-02-06T08:40:03.236992-0500 
taler-merchant-httpd-17112(FB5BZAVBGNNC5JMFXM9BPR6S5R) INFO Finished handling 
request for `/private/products/product-1' with MHD termination code 0
+2023-02-06T08:40:03.237789-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `lock-product-p2'
+2023-02-06T08:40:03.244897-0500 
taler-merchant-httpd-17112(B30ZX8QSVP3G2PWR11G7XJHNH8) INFO Handling request 
(POST) for URL '/private/products/product-2/lock'
+2023-02-06T08:40:03.259528-0500 
taler-merchant-httpd-17112(B30ZX8QSVP3G2PWR11G7XJHNH8) INFO Finished handling 
request for `/private/products/product-2/lock' with MHD termination code 0
+2023-02-06T08:40:03.260826-0500 .libs/test_merchant_api_cs-16942 INFO LOCK 
/products/$ID completed with response code 204
+2023-02-06T08:40:03.262998-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `lock-product-nx'
+2023-02-06T08:40:03.264531-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:03.267949-0500 
taler-merchant-httpd-17112(X0W9EN93MFMDKYFR03W0MFA9XW) INFO Handling request 
(POST) for URL '/private/products/product-nx/lock'
+2023-02-06T08:40:03.273595-0500 
taler-merchant-httpd-17112(X0W9EN93MFMDKYFR03W0MFA9XW) INFO Finished handling 
request for `/private/products/product-nx/lock' with MHD termination code 0
+2023-02-06T08:40:03.274637-0500 .libs/test_merchant_api_cs-16942 INFO LOCK 
/products/$ID completed with response code 404
+2023-02-06T08:40:03.275665-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `lock-product-too-much'
+2023-02-06T08:40:03.280417-0500 
taler-merchant-httpd-17112(J6A55H3XXEXN41GB32H4Q0GAB8) INFO Handling request 
(POST) for URL '/private/products/product-2/lock'
+2023-02-06T08:40:03.285303-0500 
taler-merchant-httpd-17112(J6A55H3XXEXN41GB32H4Q0GAB8) INFO Finished handling 
request for `/private/products/product-2/lock' with MHD termination code 0
+2023-02-06T08:40:03.286253-0500 .libs/test_merchant_api_cs-16942 INFO LOCK 
/products/$ID completed with response code 410
+2023-02-06T08:40:03.286900-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `delete-product-locked'
+2023-02-06T08:40:03.289714-0500 
taler-merchant-httpd-17112(799MYVTBXR1GXPST0BWP47DZV0) INFO Handling request 
(DELETE) for URL '/private/products/product-2'
+2023-02-06T08:40:03.293109-0500 
taler-merchant-httpd-17112(799MYVTBXR1GXPST0BWP47DZV0) INFO Finished handling 
request for `/private/products/product-2' with MHD termination code 0
+2023-02-06T08:40:03.294081-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:03.294245-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-reserve-1
+2023-02-06T08:40:03.300096-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting administrative transaction at 
`http://localhost:8082/2/admin/add-incoming' for reserve TWS7ZE11
+2023-02-06T08:40:03.307335-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:03.339853-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:03.341195-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:03.346019-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:03.346225-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:03.347912-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:03.348063-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:03.355581-0500 .libs/test_merchant_api_cs-16942 INFO 
Receiving incoming wire transfer: 62->2, subject: TWS7ZE11, amount: EUR:10.02
+2023-02-06T08:40:03.368146-0500 .libs/test_merchant_api_cs-16942 INFO Making 
transfer from 62 to 2 over EUR:10.02 and subject TWS7ZE11 at row 1
+2023-02-06T08:40:03.408461-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:03.408640-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: wirewatch-1
+==17205== Memcheck, a memory error detector
+==17205== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17205== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17205== Command: /home/priscilla/install/bin/taler-exchange-wirewatch -c 
test_merchant_api-cs.conf -S 1 -w 0 -t -L DEBUG
+==17205== 
+2023-02-06T08:40:03.983507-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:04.011358-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:04.937607-0500 taler-exchange-wirewatch-17205 INFO Change in 
PQ event FD to -1
+2023-02-06T08:40:04.983508-0500 taler-exchange-wirewatch-17205 INFO New poll 
FD is -1
+2023-02-06T08:40:05.119653-0500 taler-exchange-wirewatch-17205 INFO Change in 
PQ event FD to 8
+2023-02-06T08:40:05.119911-0500 taler-exchange-wirewatch-17205 INFO New poll 
FD is 8
+2023-02-06T08:40:05.143153-0500 taler-exchange-wirewatch-17205 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:40:05.145735-0500 taler-exchange-wirewatch-17205 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:05.174051-0500 taler-exchange-wirewatch-17205 INFO Trying to 
claim shard (0-1]
+2023-02-06T08:40:05.205542-0500 taler-exchange-wirewatch-17205 INFO Claimed 
new shard
+2023-02-06T08:40:05.206557-0500 taler-exchange-wirewatch-17205 INFO Starting 
with shard wirewatch-exchange-account-exchange at (0,1] locked for 0 ms
+2023-02-06T08:40:05.207181-0500 taler-exchange-wirewatch-17205 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:40:05.208541-0500 taler-exchange-wirewatch-17205 INFO Requesting 
credit history staring from 0
+2023-02-06T08:40:05.214623-0500 taler-exchange-wirewatch-17205 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1'
+2023-02-06T08:40:05.309632-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:05.334072-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:05.581549-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:40:05.581796-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:40:05.583199-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x908a460 (0)
+2023-02-06T08:40:05.585516-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 0
+2023-02-06T08:40:05.588133-0500 .libs/test_merchant_api_cs-16942 INFO 
Returning 1 credit transactions starting (inclusive) from 1
+2023-02-06T08:40:05.703043-0500 taler-exchange-wirewatch-17205 INFO History 
request returned with HTTP status 200
+2023-02-06T08:40:05.706402-0500 taler-exchange-wirewatch-17205 INFO Starting 
READ COMMITTED transaction `wirewatch check for incoming wire transfers`
+2023-02-06T08:40:05.707643-0500 taler-exchange-wirewatch-17205 INFO Importing 
1 transactions
+2023-02-06T08:40:05.785302-0500 taler-exchange-wirewatch-17205 INFO Notifying 
on reserve!
+2023-02-06T08:40:05.788311-0500 taler-exchange-wirewatch-17205 INFO Executing 
command `NOTIFY X0QE79ZRZ0CE37NJ983Z4X5WEQ5EJVDAAV2AVJSVVSYNQRFZVE630, '''
+2023-02-06T08:40:05.789434-0500 taler-exchange-wirewatch-17205 INFO PG poll 
job active
+2023-02-06T08:40:05.791025-0500 taler-exchange-wirewatch-17205 INFO PG poll 
job finishes after 0 events
+2023-02-06T08:40:05.792201-0500 taler-exchange-wirewatch-17205 INFO Imported 
transaction 1.2023-02-06T08:40:05.793209-0500 taler-exchange-wirewatch-17205 
INFO Completing shard 0-1
+2023-02-06T08:40:05.796586-0500 taler-exchange-wirewatch-17205 INFO Completed 
shard wirewatch-exchange-account-exchange (0,1] after 651 ms
+2023-02-06T08:40:05.797226-0500 taler-exchange-wirewatch-17205 INFO Committing 
wirewatch-exchange-account-exchange progress (0,1] at 1
+ (shard done)2023-02-06T08:40:05.804341-0500 taler-exchange-wirewatch-17205 
INFO Increasing batch size to 2
+2023-02-06T08:40:05.804820-0500 taler-exchange-wirewatch-17205 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:40:05.820272-0500 taler-exchange-wirewatch-17205 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:05.821914-0500 taler-exchange-wirewatch-17205 INFO Trying to 
claim shard (1-2]
+2023-02-06T08:40:05.825442-0500 taler-exchange-wirewatch-17205 INFO Claimed 
new shard
+2023-02-06T08:40:05.825654-0500 taler-exchange-wirewatch-17205 INFO Starting 
with shard wirewatch-exchange-account-exchange at (1,2] locked for 0 ms
+2023-02-06T08:40:05.825859-0500 taler-exchange-wirewatch-17205 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:40:05.827224-0500 taler-exchange-wirewatch-17205 INFO Requesting 
credit history staring from 1
+2023-02-06T08:40:05.827754-0500 taler-exchange-wirewatch-17205 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=1'
+2023-02-06T08:40:05.832716-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:40:05.833002-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:40:05.833313-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x9094530 (0)
+2023-02-06T08:40:05.834085-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 1
+2023-02-06T08:40:05.841535-0500 taler-exchange-wirewatch-17205 INFO History 
request returned with HTTP status 204
+2023-02-06T08:40:05.842281-0500 taler-exchange-wirewatch-17205 INFO 
Transaction list drained and in test mode. Exiting
+==17205== 
+==17205== HEAP SUMMARY:
+==17205==     in use at exit: 5,293 bytes in 26 blocks
+==17205==   total heap usage: 3,873 allocs, 3,847 frees, 479,122 bytes 
allocated
+==17205== 
+==17205== LEAK SUMMARY:
+==17205==    definitely lost: 0 bytes in 0 blocks
+==17205==    indirectly lost: 0 bytes in 0 blocks
+==17205==      possibly lost: 0 bytes in 0 blocks
+==17205==    still reachable: 5,293 bytes in 26 blocks
+==17205==         suppressed: 0 bytes in 0 blocks
+==17205== Rerun with --leak-check=full to see details of leaked memory
+==17205== 
+==17205== For lists of detected and suppressed errors, rerun with: -s
+==17205== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:40:05.982371-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:05.982671-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check_bank_transfer-2
+2023-02-06T08:40:05.989426-0500 .libs/test_merchant_api_cs-16942 INFO 
converted debit_payto (payto://x-taler-bank/localhost/62?receiver-name=62) to 
debit_account (62)
+2023-02-06T08:40:05.993655-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:05.993871-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-coin-1
+2023-02-06T08:40:06.013765-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:06.042152-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:06.095757-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:06.097506-0500 
taler-exchange-httpd-17126(XW6KGSRCKV98ZJVH7T3F4WBNWC) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:06.097816-0500 
taler-exchange-httpd-17126(XW6KGSRCKV98ZJVH7T3F4WBNWC) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:06.098092-0500 
taler-exchange-httpd-17126(XW6KGSRCKV98ZJVH7T3F4WBNWC) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:06.114281-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:40:06.205865-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:40:06.206062-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:40:06.207171-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 95 ms
+2023-02-06T08:40:06.213580-0500 
taler-exchange-httpd-17126(XW6KGSRCKV98ZJVH7T3F4WBNWC) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:40:06.367582-0500 .libs/test_merchant_api_cs-16942 INFO 
Attempting to withdraw from reserve TWS7ZE11
+2023-02-06T08:40:06.372244-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:06.374435-0500 
taler-exchange-httpd-17126(HKXZFPGFP6GN86JKW7VBPRR69M) INFO Handling request 
(POST) for URL 
'/reserves/EJKZMMYGT267W2F51CZTB1VYMES2TMK05V0J0H4CJP6R1V3SANA0/withdraw'
+2023-02-06T08:40:06.374845-0500 
taler-exchange-httpd-17126(HKXZFPGFP6GN86JKW7VBPRR69M) INFO Handling request 
(POST) for URL 
'/reserves/EJKZMMYGT267W2F51CZTB1VYMES2TMK05V0J0H4CJP6R1V3SANA0/withdraw'
+2023-02-06T08:40:06.375145-0500 
taler-exchange-httpd-17126(HKXZFPGFP6GN86JKW7VBPRR69M) INFO Handling request 
(POST) for URL 
'/reserves/EJKZMMYGT267W2F51CZTB1VYMES2TMK05V0J0H4CJP6R1V3SANA0/withdraw'
+2023-02-06T08:40:06.405327-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:40:06.441076-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:40:06.441275-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:40:06.441937-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 38 ms
+2023-02-06T08:40:06.444674-0500 
taler-exchange-httpd-17126(HKXZFPGFP6GN86JKW7VBPRR69M) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:40:06.454978-0500 
taler-exchange-httpd-17126(HKXZFPGFP6GN86JKW7VBPRR69M) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:40:06.456743-0500 
taler-exchange-httpd-17126(HKXZFPGFP6GN86JKW7VBPRR69M) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:40:06.458184-0500 
taler-exchange-httpd-17126(HKXZFPGFP6GN86JKW7VBPRR69M) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:40:06.499524-0500 
taler-exchange-httpd-17126(HKXZFPGFP6GN86JKW7VBPRR69M) INFO Request for 
`/reserves/EJKZMMYGT267W2F51CZTB1VYMES2TMK05V0J0H4CJP6R1V3SANA0/withdraw' 
completed (0)
+2023-02-06T08:40:06.554681-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:06.554859-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-coin-2
+2023-02-06T08:40:06.560156-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:06.561875-0500 
taler-exchange-httpd-17126(VQJDX2PPDHXKD23K5G4HMBD8DR) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:06.562181-0500 
taler-exchange-httpd-17126(VQJDX2PPDHXKD23K5G4HMBD8DR) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:06.562455-0500 
taler-exchange-httpd-17126(VQJDX2PPDHXKD23K5G4HMBD8DR) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:06.565567-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:40:06.569729-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:40:06.569905-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:40:06.570276-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 4738 µs
+2023-02-06T08:40:06.572063-0500 
taler-exchange-httpd-17126(VQJDX2PPDHXKD23K5G4HMBD8DR) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:40:06.601808-0500 .libs/test_merchant_api_cs-16942 INFO 
Attempting to withdraw from reserve TWS7ZE11
+2023-02-06T08:40:06.604773-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:06.606542-0500 
taler-exchange-httpd-17126(9XKSDPX19XAY6BH1EQQ9FP2M7R) INFO Handling request 
(POST) for URL 
'/reserves/EJKZMMYGT267W2F51CZTB1VYMES2TMK05V0J0H4CJP6R1V3SANA0/withdraw'
+2023-02-06T08:40:06.606880-0500 
taler-exchange-httpd-17126(9XKSDPX19XAY6BH1EQQ9FP2M7R) INFO Handling request 
(POST) for URL 
'/reserves/EJKZMMYGT267W2F51CZTB1VYMES2TMK05V0J0H4CJP6R1V3SANA0/withdraw'
+2023-02-06T08:40:06.607179-0500 
taler-exchange-httpd-17126(9XKSDPX19XAY6BH1EQQ9FP2M7R) INFO Handling request 
(POST) for URL 
'/reserves/EJKZMMYGT267W2F51CZTB1VYMES2TMK05V0J0H4CJP6R1V3SANA0/withdraw'
+2023-02-06T08:40:06.617286-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:40:06.619256-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:40:06.619463-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:40:06.619770-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2627 µs
+2023-02-06T08:40:06.620116-0500 
taler-exchange-httpd-17126(9XKSDPX19XAY6BH1EQQ9FP2M7R) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:40:06.621758-0500 
taler-exchange-httpd-17126(9XKSDPX19XAY6BH1EQQ9FP2M7R) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:40:06.622128-0500 
taler-exchange-httpd-17126(9XKSDPX19XAY6BH1EQQ9FP2M7R) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:40:06.622551-0500 
taler-exchange-httpd-17126(9XKSDPX19XAY6BH1EQQ9FP2M7R) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:40:06.638411-0500 
taler-exchange-httpd-17126(9XKSDPX19XAY6BH1EQQ9FP2M7R) INFO Request for 
`/reserves/EJKZMMYGT267W2F51CZTB1VYMES2TMK05V0J0H4CJP6R1V3SANA0/withdraw' 
completed (0)
+2023-02-06T08:40:06.667603-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:06.667759-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-orders-empty
+2023-02-06T08:40:06.674148-0500 
taler-merchant-httpd-17112(23583E04BZJ30H0NDK23BSKSRM) INFO Handling request 
(GET) for URL '/private/orders'
+2023-02-06T08:40:06.685396-0500 
taler-merchant-httpd-17112(23583E04BZJ30H0NDK23BSKSRM) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:06.688323-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:06.688468-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-status-1
+2023-02-06T08:40:06.692239-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:06.693511-0500 
taler-exchange-httpd-17126(R0W1HDKBR8R43094G5J5W74SW8) INFO Handling request 
(GET) for URL '/reserves/EJKZMMYGT267W2F51CZTB1VYMES2TMK05V0J0H4CJP6R1V3SANA0'
+2023-02-06T08:40:06.695378-0500 
taler-exchange-httpd-17126(R0W1HDKBR8R43094G5J5W74SW8) INFO Starting 
transaction `get reserve balance'
+2023-02-06T08:40:06.705437-0500 
taler-exchange-httpd-17126(R0W1HDKBR8R43094G5J5W74SW8) INFO Request for 
`/reserves/EJKZMMYGT267W2F51CZTB1VYMES2TMK05V0J0H4CJP6R1V3SANA0' completed (0)
+2023-02-06T08:40:06.708230-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:06.708375-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: delete-order-nx
+2023-02-06T08:40:06.711042-0500 
taler-merchant-httpd-17112(R9G99A2W0G097NCDF7MG25NEZ0) INFO Handling request 
(DELETE) for URL '/private/orders/1'
+2023-02-06T08:40:06.719335-0500 
taler-merchant-httpd-17112(R9G99A2W0G097NCDF7MG25NEZ0) INFO Finished handling 
request for `/private/orders/1' with MHD termination code 0
+2023-02-06T08:40:06.720487-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:06.720626-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-orders-1-start
+2023-02-06T08:40:06.723182-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:06.723312-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: claim-order-nx
+2023-02-06T08:40:06.724747-0500 
taler-merchant-httpd-17112(SDGKHMCGZCH6KJKSNVSV2C474M) INFO Handling request 
(GET) for URL '/private/orders'
+2023-02-06T08:40:06.726358-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/1/claim
+2023-02-06T08:40:06.729049-0500 
taler-merchant-httpd-17112(SDGKHMCGZCH6KJKSNVSV2C474M) INFO Executing PQ 
command `LISTEN X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0'
+2023-02-06T08:40:06.737100-0500 
taler-merchant-httpd-17112(PVC5K8QB9NVE4CX49MHS50ECVC) INFO Handling request 
(POST) for URL '/orders/1/claim'
+2023-02-06T08:40:06.739754-0500 
taler-merchant-httpd-17112(PVC5K8QB9NVE4CX49MHS50ECVC) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:06.743421-0500 
taler-merchant-httpd-17112(PVC5K8QB9NVE4CX49MHS50ECVC) INFO Rolling back 
merchant DB transaction `claim order'
+2023-02-06T08:40:06.746177-0500 
taler-merchant-httpd-17112(PVC5K8QB9NVE4CX49MHS50ECVC) INFO Finished handling 
request for `/orders/1/claim' with MHD termination code 0
+2023-02-06T08:40:06.747774-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 404
+2023-02-06T08:40:06.748512-0500 .libs/test_merchant_api_cs-16942 WARNING 
Proposal lookup failed with HTTP status code 404/2300
+2023-02-06T08:40:06.749814-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:06.749951-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-1
+2023-02-06T08:40:06.757903-0500 
taler-merchant-httpd-17112(WHSV1RR6PP0053TJWMNK78J1B8) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:06.777374-0500 
taler-merchant-httpd-17112(WHSV1RR6PP0053TJWMNK78J1B8) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:40:06.781811-0500 
taler-merchant-httpd-17112(WHSV1RR6PP0053TJWMNK78J1B8) INFO Notifying clients 
of new order 2 at GRJQ5BC0
+2023-02-06T08:40:06.782182-0500 
taler-merchant-httpd-17112(WHSV1RR6PP0053TJWMNK78J1B8) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'0000000000004005YG42PFNSG0000000''
+2023-02-06T08:40:06.782893-0500 
taler-merchant-httpd-17112(WHSV1RR6PP0053TJWMNK78J1B8) INFO PG poll job active
+2023-02-06T08:40:06.783225-0500 
taler-merchant-httpd-17112(WHSV1RR6PP0053TJWMNK78J1B8) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:06.783477-0500 
taler-merchant-httpd-17112(WHSV1RR6PP0053TJWMNK78J1B8) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T08:40:06.793511-0500 
taler-merchant-httpd-17112(WHSV1RR6PP0053TJWMNK78J1B8) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:06.795076-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/1/claim
+2023-02-06T08:40:06.800307-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO Handling request 
(POST) for URL '/orders/1/claim'
+2023-02-06T08:40:06.801770-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:06.827648-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO Notifying clients 
of new order 2 at GRJQ5BC0
+2023-02-06T08:40:06.828035-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'0000000000004005YG42PFNSG0000001''
+2023-02-06T08:40:06.828642-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO PG poll job active
+2023-02-06T08:40:06.829264-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO Received 
notification x8vtr0dzhcpkwq65a82fg0ph5h926adz0xsr0f3sghw8z9j7827y0 with extra 
data `'
+2023-02-06T08:40:06.831376-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO Received 
notification about new order 2
+2023-02-06T08:40:06.833542-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO Waking up client 
0x65fe9e0!
+2023-02-06T08:40:06.834770-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO Adding order 
`(null)' (2) to result set
+2023-02-06T08:40:06.852873-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO Executing PQ 
command `UNLISTEN X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0'
+2023-02-06T08:40:06.854655-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:06.854992-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO Committing merchant 
DB transaction claim order
+2023-02-06T08:40:06.908191-0500 
taler-merchant-httpd-17112(AQKW85329T11JRK3GS40SKFY4C) INFO Finished handling 
request for `/orders/1/claim' with MHD termination code 0
+2023-02-06T08:40:06.911684-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:40:06.913506-0500 
taler-merchant-httpd-17112(SDGKHMCGZCH6KJKSNVSV2C474M) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:07.021785-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.021951-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: post-webhooks-pay-w1
+2023-02-06T08:40:07.027579-0500 
taler-merchant-httpd-17112(3X1442JV4MM3MPSN490TAT5ZF0) INFO Handling request 
(POST) for URL '/private/webhooks'
+2023-02-06T08:40:07.030041-0500 
taler-merchant-httpd-17112(3X1442JV4MM3MPSN490TAT5ZF0) INFO Starting merchant 
DB transaction `/post webhooks'
+2023-02-06T08:40:07.035584-0500 
taler-merchant-httpd-17112(3X1442JV4MM3MPSN490TAT5ZF0) INFO Committing merchant 
DB transaction /post webhooks
+2023-02-06T08:40:07.048457-0500 
taler-merchant-httpd-17112(3X1442JV4MM3MPSN490TAT5ZF0) INFO Finished handling 
request for `/private/webhooks' with MHD termination code 0
+2023-02-06T08:40:07.049690-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/webhooks completed with response code 204
+2023-02-06T08:40:07.051457-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.051584-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: launch-http-server-for-webhooks
+2023-02-06T08:40:07.052798-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.052975-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-1-idem
+2023-02-06T08:40:07.059375-0500 
taler-merchant-httpd-17112(EYHVKWZKQVF2PZP2HS2TZNBPY0) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:07.085738-0500 
taler-merchant-httpd-17112(EYHVKWZKQVF2PZP2HS2TZNBPY0) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:07.087850-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.088102-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-1x
+2023-02-06T08:40:07.095001-0500 
taler-merchant-httpd-17112(JG1FX2RFCPC6TNY9A94SV1GCS4) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:07.114087-0500 
taler-merchant-httpd-17112(JG1FX2RFCPC6TNY9A94SV1GCS4) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:40:07.118123-0500 
taler-merchant-httpd-17112(JG1FX2RFCPC6TNY9A94SV1GCS4) INFO Notifying clients 
of new order 3 at GRJQ5BC0
+2023-02-06T08:40:07.118576-0500 
taler-merchant-httpd-17112(JG1FX2RFCPC6TNY9A94SV1GCS4) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'0000000000006005YG42PKFVR0000000''
+2023-02-06T08:40:07.119186-0500 
taler-merchant-httpd-17112(JG1FX2RFCPC6TNY9A94SV1GCS4) INFO PG poll job active
+2023-02-06T08:40:07.119516-0500 
taler-merchant-httpd-17112(JG1FX2RFCPC6TNY9A94SV1GCS4) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:07.119795-0500 
taler-merchant-httpd-17112(JG1FX2RFCPC6TNY9A94SV1GCS4) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T08:40:07.283395-0500 
taler-merchant-httpd-17112(JG1FX2RFCPC6TNY9A94SV1GCS4) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:07.284653-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/1x/claim
+2023-02-06T08:40:07.292011-0500 
taler-merchant-httpd-17112(XNK2FKTTZ4VSMTRHNHV3CR9QP4) INFO Handling request 
(POST) for URL '/orders/1x/claim'
+2023-02-06T08:40:07.293095-0500 
taler-merchant-httpd-17112(XNK2FKTTZ4VSMTRHNHV3CR9QP4) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:07.310360-0500 
taler-merchant-httpd-17112(XNK2FKTTZ4VSMTRHNHV3CR9QP4) INFO Notifying clients 
of new order 3 at GRJQ5BC0
+2023-02-06T08:40:07.310788-0500 
taler-merchant-httpd-17112(XNK2FKTTZ4VSMTRHNHV3CR9QP4) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'0000000000006005YG42PKFVR0000001''
+2023-02-06T08:40:07.311374-0500 
taler-merchant-httpd-17112(XNK2FKTTZ4VSMTRHNHV3CR9QP4) INFO PG poll job active
+2023-02-06T08:40:07.311708-0500 
taler-merchant-httpd-17112(XNK2FKTTZ4VSMTRHNHV3CR9QP4) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:07.311930-0500 
taler-merchant-httpd-17112(XNK2FKTTZ4VSMTRHNHV3CR9QP4) INFO Committing merchant 
DB transaction claim order
+2023-02-06T08:40:07.334544-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:07.365042-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:07.379106-0500 
taler-merchant-httpd-17112(XNK2FKTTZ4VSMTRHNHV3CR9QP4) INFO Finished handling 
request for `/orders/1x/claim' with MHD termination code 0
+2023-02-06T08:40:07.384111-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:40:07.395571-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.395772-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: reclaim-1
+2023-02-06T08:40:07.397368-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/1/claim
+2023-02-06T08:40:07.401647-0500 
taler-merchant-httpd-17112(JPMNEG3QM3BKNC5E99QBTM28B0) INFO Handling request 
(POST) for URL '/orders/1/claim'
+2023-02-06T08:40:07.402708-0500 
taler-merchant-httpd-17112(JPMNEG3QM3BKNC5E99QBTM28B0) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:07.406985-0500 
taler-merchant-httpd-17112(JPMNEG3QM3BKNC5E99QBTM28B0) INFO Rolling back 
merchant DB transaction `claim order'
+2023-02-06T08:40:07.427242-0500 
taler-merchant-httpd-17112(JPMNEG3QM3BKNC5E99QBTM28B0) INFO Finished handling 
request for `/orders/1/claim' with MHD termination code 0
+2023-02-06T08:40:07.432763-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:40:07.444545-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.444801-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: reclaim-1-bad-nonce
+2023-02-06T08:40:07.446440-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/1/claim
+2023-02-06T08:40:07.450362-0500 
taler-merchant-httpd-17112(6SW9VA9H6Q22FS3ENSF684B8BM) INFO Handling request 
(POST) for URL '/orders/1/claim'
+2023-02-06T08:40:07.451112-0500 
taler-merchant-httpd-17112(6SW9VA9H6Q22FS3ENSF684B8BM) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:07.455474-0500 
taler-merchant-httpd-17112(6SW9VA9H6Q22FS3ENSF684B8BM) INFO Rolling back 
merchant DB transaction `claim order'
+2023-02-06T08:40:07.458563-0500 
taler-merchant-httpd-17112(6SW9VA9H6Q22FS3ENSF684B8BM) INFO Finished handling 
request for `/orders/1/claim' with MHD termination code 0
+2023-02-06T08:40:07.459703-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 409
+2023-02-06T08:40:07.460062-0500 .libs/test_merchant_api_cs-16942 WARNING 
Proposal lookup failed with HTTP status code 409/2301
+2023-02-06T08:40:07.460632-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.460896-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: reclaim-1x
+2023-02-06T08:40:07.461446-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/1x/claim
+2023-02-06T08:40:07.465812-0500 
taler-merchant-httpd-17112(F1VQYPBRCPX1TEWKQABW4ZCFS4) INFO Handling request 
(POST) for URL '/orders/1x/claim'
+2023-02-06T08:40:07.466836-0500 
taler-merchant-httpd-17112(F1VQYPBRCPX1TEWKQABW4ZCFS4) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:07.471367-0500 
taler-merchant-httpd-17112(F1VQYPBRCPX1TEWKQABW4ZCFS4) INFO Rolling back 
merchant DB transaction `claim order'
+2023-02-06T08:40:07.491989-0500 
taler-merchant-httpd-17112(F1VQYPBRCPX1TEWKQABW4ZCFS4) INFO Finished handling 
request for `/orders/1x/claim' with MHD termination code 0
+2023-02-06T08:40:07.497207-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:40:07.509636-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.509882-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-1-pre-exists
+2023-02-06T08:40:07.518128-0500 
taler-merchant-httpd-17112(DV6R8SHJ7141RJ1VC7R5S6WAPW) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:07.541259-0500 
taler-merchant-httpd-17112(DV6R8SHJ7141RJ1VC7R5S6WAPW) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:07.543750-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.543999-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-orders-1-conclude
+2023-02-06T08:40:07.546520-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.546736-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-orders-1
+2023-02-06T08:40:07.550602-0500 
taler-merchant-httpd-17112(4MCWD23WX1TCY9KQ8DKPV2NNYR) INFO Handling request 
(GET) for URL '/private/orders'
+2023-02-06T08:40:07.553488-0500 
taler-merchant-httpd-17112(4MCWD23WX1TCY9KQ8DKPV2NNYR) INFO Adding order `1x' 
(3) to result set
+2023-02-06T08:40:07.559812-0500 
taler-merchant-httpd-17112(4MCWD23WX1TCY9KQ8DKPV2NNYR) INFO Adding order `1' 
(2) to result set
+2023-02-06T08:40:07.566778-0500 
taler-merchant-httpd-17112(4MCWD23WX1TCY9KQ8DKPV2NNYR) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:07.572383-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.572627-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-wallet-1
+2023-02-06T08:40:07.578222-0500 .libs/test_merchant_api_cs-16942 INFO Checking 
order status at 
http://localhost:8080/orders/1?h_contract=3BCX3KCXEQN3N2R11ZKBQ5CZ14WEXN2VT2B2A4P5R5X36ARG73023S51B1FHR6YSH9P2V2JJ8AK5V76E4GES44HDFBX8WASSFWMKW00
+2023-02-06T08:40:07.583548-0500 
taler-merchant-httpd-17112(092MZVSA9E1AJJFP5ENRZH8E98) INFO Handling request 
(GET) for URL '/orders/1'
+2023-02-06T08:40:07.627318-0500 
taler-merchant-httpd-17112(092MZVSA9E1AJJFP5ENRZH8E98) INFO Order claimed but 
unpaid, sending pay request for order 1
+2023-02-06T08:40:07.628740-0500 
taler-merchant-httpd-17112(092MZVSA9E1AJJFP5ENRZH8E98) INFO Sending payment 
request
+2023-02-06T08:40:07.633421-0500 
taler-merchant-httpd-17112(092MZVSA9E1AJJFP5ENRZH8E98) INFO Finished handling 
request for `/orders/1' with MHD termination code 0
+2023-02-06T08:40:07.640355-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.640603-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-merchant-1
+2023-02-06T08:40:07.641145-0500 .libs/test_merchant_api_cs-16942 INFO Getting 
order status from http://localhost:8080/private/orders/1?transfer=YES
+2023-02-06T08:40:07.644364-0500 
taler-merchant-httpd-17112(YCN79P5XRDTAQWH3WRS09FRDMR) INFO Handling request 
(GET) for URL '/private/orders/1'
+2023-02-06T08:40:07.669972-0500 
taler-merchant-httpd-17112(YCN79P5XRDTAQWH3WRS09FRDMR) INFO Finished handling 
request for `/private/orders/1' with MHD termination code 0
+2023-02-06T08:40:07.675941-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/private/orders/$ID completed with status 200
+2023-02-06T08:40:07.677153-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.677367-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-order-wallet-start-1
+2023-02-06T08:40:07.680515-0500 .libs/test_merchant_api_cs-16942 INFO Checking 
order status at 
http://localhost:8080/orders/1?h_contract=3BCX3KCXEQN3N2R11ZKBQ5CZ14WEXN2VT2B2A4P5R5X36ARG73023S51B1FHR6YSH9P2V2JJ8AK5V76E4GES44HDFBX8WASSFWMKW00&timeout_ms=60000
+2023-02-06T08:40:07.683273-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.683449-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-order-wallet-start-1x
+2023-02-06T08:40:07.684249-0500 .libs/test_merchant_api_cs-16942 INFO Checking 
order status at 
http://localhost:8080/orders/1x?h_contract=KWR6BTQ89W2GQ758KW5HBTR4VYASD2H8GDEJ99FGASHG7281EZ1HPWNHM0TM822GZBSBKVCD82FXWR1VJHG61MXG8M7RGWQ2T25RRHG&session_id=session-0&timeout_ms=2000
+2023-02-06T08:40:07.684470-0500 
taler-merchant-httpd-17112(SRCEDYT44A584BKNBJQWHV5CW0) INFO Handling request 
(GET) for URL '/orders/1'
+2023-02-06T08:40:07.686283-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.686471-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-order-merchant-1-start
+2023-02-06T08:40:07.687333-0500 .libs/test_merchant_api_cs-16942 INFO Getting 
order status from 
http://localhost:8080/private/orders/1?transfer=NO&timeout_ms=60000
+2023-02-06T08:40:07.687358-0500 
taler-merchant-httpd-17112(SRCEDYT44A584BKNBJQWHV5CW0) INFO Subscribing to 
payments on 1
+2023-02-06T08:40:07.688033-0500 
taler-merchant-httpd-17112(SRCEDYT44A584BKNBJQWHV5CW0) INFO Executing PQ 
command `LISTEN XXF3S3K7J50S89J4R977ZMYV4QJMGF7AW66Y24B52RD6A6F1YXBJG'
+2023-02-06T08:40:07.690319-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:07.690528-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: deposit-simple
+2023-02-06T08:40:07.701919-0500 
taler-merchant-httpd-17112(SRCEDYT44A584BKNBJQWHV5CW0) INFO Order claimed but 
unpaid, sending pay request for order 1
+2023-02-06T08:40:07.702828-0500 
taler-merchant-httpd-17112(SRCEDYT44A584BKNBJQWHV5CW0) INFO Suspending GET 
/orders/1
+2023-02-06T08:40:07.706571-0500 
taler-merchant-httpd-17112(E6DVSGBVS1SRHMSFSQJB043RNC) INFO Handling request 
(GET) for URL '/orders/1x'
+2023-02-06T08:40:07.707253-0500 
taler-merchant-httpd-17112(E6DVSGBVS1SRHMSFSQJB043RNC) INFO Subscribing to 
payments on 1x
+2023-02-06T08:40:07.707606-0500 
taler-merchant-httpd-17112(E6DVSGBVS1SRHMSFSQJB043RNC) INFO Executing PQ 
command `LISTEN XTY8REGTB6AWA68DXFB6RNRDB2JX4NW4J02VNV56P3Y1PY9GQTR20'
+2023-02-06T08:40:07.722365-0500 
taler-merchant-httpd-17112(E6DVSGBVS1SRHMSFSQJB043RNC) INFO Sending pay request 
for order 1x (already paid: (null))
+2023-02-06T08:40:07.722857-0500 
taler-merchant-httpd-17112(E6DVSGBVS1SRHMSFSQJB043RNC) INFO Suspending GET 
/orders/1x
+2023-02-06T08:40:07.725201-0500 
taler-merchant-httpd-17112(ZPGZ0YR8W0Y5550XE71PYZXTGW) INFO Handling request 
(GET) for URL '/private/orders/1'
+2023-02-06T08:40:07.727474-0500 
taler-merchant-httpd-17112(ZPGZ0YR8W0Y5550XE71PYZXTGW) INFO Subscribing to 
payment triggers for 0x76e7c10
+2023-02-06T08:40:07.744716-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Handling request 
(POST) for URL '/orders/1/pay'
+2023-02-06T08:40:07.765538-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Handling payment 
for order `1' with contract hash `3BCX3KCX'
+2023-02-06T08:40:07.771499-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Starting merchant 
DB transaction `run pay'
+2023-02-06T08:40:07.776598-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Rolling back 
merchant DB transaction `run pay'
+2023-02-06T08:40:07.779679-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Do not have 
required wire data. Will re-request /wire now
+2023-02-06T08:40:07.781738-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Missing wire fees 
for exchange http://localhost:8081/ and method x-taler-bank
+2023-02-06T08:40:07.782775-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Initiating /wire 
download
+2023-02-06T08:40:07.786227-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:07.787480-0500 
taler-exchange-httpd-17126(ZGE1YSG87N19DPQF8SYVV7GJYM) INFO Handling request 
(GET) for URL '/wire'
+2023-02-06T08:40:07.867243-0500 
taler-exchange-httpd-17126(ZGE1YSG87N19DPQF8SYVV7GJYM) INFO Setting 'Expires' 
header for '/wire' to 'Mon, 01 Jan 2024 00:00:00 GMT'
+2023-02-06T08:40:07.870300-0500 
taler-exchange-httpd-17126(ZGE1YSG87N19DPQF8SYVV7GJYM) INFO Request for `/wire' 
completed (0)
+2023-02-06T08:40:07.884173-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Received /wire 
response
+2023-02-06T08:40:07.886737-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Starting merchant 
DB transaction `store wire fee'
+2023-02-06T08:40:07.890544-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Storing wire fee 
for HGYF3P1M starting at Sat Dec 31 19:00:00 2022 of EUR:0.01
+2023-02-06T08:40:07.892284-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Committing merchant 
DB transaction store wire fee
+2023-02-06T08:40:07.917526-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Processing payment 
with exchange http://localhost:8081/
+2023-02-06T08:40:07.923827-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Initiating batch 
deposit with 1 coins
+2023-02-06T08:40:08.074441-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:08.075529-0500 
taler-exchange-httpd-17126(7YXGV79SGQFSRD4G35R7CC9RQG) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:08.075718-0500 
taler-exchange-httpd-17126(7YXGV79SGQFSRD4G35R7CC9RQG) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:08.075889-0500 
taler-exchange-httpd-17126(7YXGV79SGQFSRD4G35R7CC9RQG) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:08.076252-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:08.106835-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:08.298751-0500 
taler-exchange-httpd-17126(7YXGV79SGQFSRD4G35R7CC9RQG) INFO Starting 
transaction `execute batch deposit'
+2023-02-06T08:40:08.333909-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:40:08.334130-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:40:08.339571-0500 
taler-exchange-httpd-17126(7YXGV79SGQFSRD4G35R7CC9RQG) INFO Request for 
`/batch-deposit' completed (0)
+2023-02-06T08:40:08.363581-0500 taler-merchant-httpd-17112 INFO Batch deposit 
completed with status 200
+2023-02-06T08:40:08.364572-0500 taler-merchant-httpd-17112 INFO Starting 
merchant DB transaction `batch-deposit-insert-confirmation'
+2023-02-06T08:40:08.371736-0500 taler-merchant-httpd-17112 INFO Committing 
merchant DB transaction batch-deposit-insert-confirmation
+2023-02-06T08:40:08.386323-0500 taler-merchant-httpd-17112 INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:08.388084-0500 taler-merchant-httpd-17112 INFO Starting 
merchant DB transaction `run pay'
+2023-02-06T08:40:08.402111-0500 taler-merchant-httpd-17112 INFO Subtracting 
total refunds from paid amount: EUR:0
+2023-02-06T08:40:08.403733-0500 taler-merchant-httpd-17112 INFO Order `1' 
(3BCX3KCX) was fully paid
+2023-02-06T08:40:08.409308-0500 taler-merchant-httpd-17112 INFO Notifying 
clients of new order 2 at GRJQ5BC0
+2023-02-06T08:40:08.409679-0500 taler-merchant-httpd-17112 INFO Executing 
command `NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'0000000000004005YG42PFNSG0000003''
+2023-02-06T08:40:08.410293-0500 taler-merchant-httpd-17112 INFO PG poll job 
active
+2023-02-06T08:40:08.410705-0500 taler-merchant-httpd-17112 INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:08.442023-0500 taler-merchant-httpd-17112 INFO Executing 
command `NOTIFY XXJWF6C1DCS1255RJH7GQ1EK16J8DMRSQ6K9EDKNKCP7HRVWAJPKG, '''
+2023-02-06T08:40:08.442685-0500 taler-merchant-httpd-17112 INFO PG poll job 
active
+2023-02-06T08:40:08.443012-0500 taler-merchant-httpd-17112 INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:08.445023-0500 taler-merchant-httpd-17112 INFO Committing 
merchant DB transaction run pay
+2023-02-06T08:40:08.449575-0500 taler-merchant-httpd-17112 INFO Notifying 
clients about payment of order 1
+2023-02-06T08:40:08.450375-0500 taler-merchant-httpd-17112 INFO Executing 
command `NOTIFY XXF3S3K7J50S89J4R977ZMYV4QJMGF7AW66Y24B52RD6A6F1YXBJG, '''
+2023-02-06T08:40:08.451160-0500 taler-merchant-httpd-17112 INFO PG poll job 
active
+2023-02-06T08:40:08.451837-0500 taler-merchant-httpd-17112 INFO Received 
notification xxf3s3k7j50s89j4r977zmyv4qjmgf7aw66y24b52rd6a6f1yxbjg with extra 
data `'
+2023-02-06T08:40:08.452775-0500 taler-merchant-httpd-17112 INFO Resuming 
request 0x76e7c10 by trigger
+2023-02-06T08:40:08.488168-0500 
taler-merchant-httpd-17112(SRCEDYT44A584BKNBJQWHV5CW0) INFO Received event for 
1 with argument ``
+2023-02-06T08:40:08.489578-0500 
taler-merchant-httpd-17112(SRCEDYT44A584BKNBJQWHV5CW0) INFO Resuming (1/0) by 
event with argument ``
+2023-02-06T08:40:08.490798-0500 
taler-merchant-httpd-17112(ZPGZ0YR8W0Y5550XE71PYZXTGW) INFO Finished handling 
request for `/private/orders/1' with MHD termination code 0
+2023-02-06T08:40:08.496791-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/private/orders/$ID finished with status 200.
+2023-02-06T08:40:08.510419-0500 
taler-merchant-httpd-17112(ZPGZ0YR8W0Y5550XE71PYZXTGW) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:08.511985-0500 
taler-merchant-httpd-17112(ZPGZ0YR8W0Y5550XE71PYZXTGW) INFO Notifying clients 
about session change to session-0 for https://example.com
+2023-02-06T08:40:08.512450-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/orders/$ID finished with status 200.
+2023-02-06T08:40:08.512890-0500 
taler-merchant-httpd-17112(ZPGZ0YR8W0Y5550XE71PYZXTGW) INFO Executing command 
`NOTIFY XVS9B5BY21H980YQ0PJJXY12A1YCT12HA3EGB6C1JE99FS68THH10, '''
+2023-02-06T08:40:08.513573-0500 
taler-merchant-httpd-17112(ZPGZ0YR8W0Y5550XE71PYZXTGW) INFO PG poll job active
+2023-02-06T08:40:08.513841-0500 
taler-merchant-httpd-17112(ZPGZ0YR8W0Y5550XE71PYZXTGW) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:08.520546-0500 
taler-merchant-httpd-17112(SRCEDYT44A584BKNBJQWHV5CW0) INFO Finished handling 
request for `/orders/1' with MHD termination code 0
+2023-02-06T08:40:08.521127-0500 
taler-merchant-httpd-17112(SRCEDYT44A584BKNBJQWHV5CW0) INFO Executing PQ 
command `UNLISTEN XXF3S3K7J50S89J4R977ZMYV4QJMGF7AW66Y24B52RD6A6F1YXBJG'
+2023-02-06T08:40:08.524207-0500 .libs/test_merchant_api_cs-16942 INFO /pay 
completed with response code 200
+2023-02-06T08:40:08.525712-0500 
taler-merchant-httpd-17112(XSNQY8Y41KBA6PYAFRV81SQYC4) INFO Finished handling 
request for `/orders/1/pay' with MHD termination code 0
+2023-02-06T08:40:08.532227-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:08.532407-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-order-merchant-1-conclude
+2023-02-06T08:40:08.533462-0500 .libs/test_merchant_api_cs-16942 INFO Waiting 
on GET /private/orders/$ID of poll-order-merchant-1-start (finished)
+2023-02-06T08:40:08.534955-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:08.535112-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-order-1-conclude
+2023-02-06T08:40:08.536096-0500 .libs/test_merchant_api_cs-16942 INFO Waiting 
on GET /orders/$ID of poll-order-wallet-start-1 (finished)
+2023-02-06T08:40:08.537717-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:08.537871-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pending-webhooks-pay-w1
+2023-02-06T08:40:08.548933-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:08.551122-0500 
taler-exchange-httpd-17126(41MKJ4WK21FTG9HQD411HCARK8) INFO Handling request 
(GET) for URL 
'/deposits/KB97D1V89T5ST9YM71MZFC47QGN8RE18YHGFHJB93D8HM4WF485VFWSSDD15W5NCMKSNXY397J091PXHQ0RG7A37THXYX9H6ZZ7CXQ0/EH1PT88999CT0RH6AN8HYY53Y9E9Y0D3XVM76NFM45JGCPNPR340/3BCX3KCXEQN3N2R11ZKBQ5CZ14WEXN2VT2B2A4P5R5X36ARG73023S51B1FHR6YSH9P2V2JJ8AK5V76E4GES44HDFBX8WASSFWMKW00/K9GCA58XD8GMG0ZZ2DM20MHT2MK4PRSV1TG0M51HKESP0G3BMYQG'
+2023-02-06T08:40:08.560566-0500 
taler-exchange-httpd-17126(41MKJ4WK21FTG9HQD411HCARK8) INFO Starting 
transaction `handle deposits GET'
+==17240== Memcheck, a memory error detector
+==17240== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17240== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17240== Command: /home/priscilla/install/bin/taler-merchant-webhook -c 
test_merchant_api-cs.conf -t -L DEBUG
+==17240== 
+2023-02-06T08:40:09.012828-0500 
taler-exchange-httpd-17126(41MKJ4WK21FTG9HQD411HCARK8) INFO Request for 
`/deposits/KB97D1V89T5ST9YM71MZFC47QGN8RE18YHGFHJB93D8HM4WF485VFWSSDD15W5NCMKSNXY397J091PXHQ0RG7A37THXYX9H6ZZ7CXQ0/EH1PT88999CT0RH6AN8HYY53Y9E9Y0D3XVM76NFM45JGCPNPR340/3BCX3KCXEQN3N2R11ZKBQ5CZ14WEXN2VT2B2A4P5R5X36ARG73023S51B1FHR6YSH9P2V2JJ8AK5V76E4GES44HDFBX8WASSFWMKW00/K9GCA58XD8GMG0ZZ2DM20MHT2MK4PRSV1TG0M51HKESP0G3BMYQG'
 completed (0)
+2023-02-06T08:40:09.366681-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:09.395310-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:09.709351-0500 
taler-merchant-httpd-17112(E6DVSGBVS1SRHMSFSQJB043RNC) INFO Received event for 
1x with argument ``
+2023-02-06T08:40:09.709652-0500 
taler-merchant-httpd-17112(E6DVSGBVS1SRHMSFSQJB043RNC) INFO Resuming (0/0) by 
event with argument ``
+2023-02-06T08:40:09.719621-0500 
taler-merchant-httpd-17112(E6DVSGBVS1SRHMSFSQJB043RNC) INFO Sending pay request 
for order 1x (already paid: 1)
+2023-02-06T08:40:09.719859-0500 
taler-merchant-httpd-17112(E6DVSGBVS1SRHMSFSQJB043RNC) INFO Sending payment 
request
+2023-02-06T08:40:09.721366-0500 
taler-merchant-httpd-17112(E6DVSGBVS1SRHMSFSQJB043RNC) INFO Finished handling 
request for `/orders/1x' with MHD termination code 0
+2023-02-06T08:40:09.721707-0500 
taler-merchant-httpd-17112(E6DVSGBVS1SRHMSFSQJB043RNC) INFO Executing PQ 
command `UNLISTEN XTY8REGTB6AWA68DXFB6RNRDB2JX4NW4J02VNV56P3Y1PY9GQTR20'
+2023-02-06T08:40:09.722309-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/orders/$ID finished with status 402.
+2023-02-06T08:40:10.107576-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:10.068117-0500 taler-merchant-webhook-17240 INFO Change in PQ 
event FD to -1
+2023-02-06T08:40:10.115638-0500 taler-merchant-webhook-17240 INFO New poll FD 
is -1
+2023-02-06T08:40:10.169408-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:10.336619-0500 taler-merchant-webhook-17240 INFO Change in PQ 
event FD to 10
+2023-02-06T08:40:10.337032-0500 taler-merchant-webhook-17240 INFO New poll FD 
is 10
+2023-02-06T08:40:10.809253-0500 taler-merchant-webhook-17240 INFO Webhook 1 
returned with status 200
+2023-02-06T08:40:10.828570-0500 taler-merchant-webhook-17240 INFO Delete 
returned: 1
+2023-02-06T08:40:10.844999-0500 taler-merchant-webhook-17240 INFO Running 
shutdown
+2023-02-06T08:40:10.846328-0500 taler-merchant-webhook-17240 INFO Rolling back 
merchant DB transaction `(null)'
+==17240== 
+==17240== HEAP SUMMARY:
+==17240==     in use at exit: 5,289 bytes in 26 blocks
+==17240==   total heap usage: 3,931 allocs, 3,905 frees, 514,601 bytes 
allocated
+==17240== 
+==17240== LEAK SUMMARY:
+==17240==    definitely lost: 0 bytes in 0 blocks
+==17240==    indirectly lost: 0 bytes in 0 blocks
+==17240==      possibly lost: 0 bytes in 0 blocks
+==17240==    still reachable: 5,289 bytes in 26 blocks
+==17240==         suppressed: 0 bytes in 0 blocks
+==17240== Rerun with --leak-check=full to see details of leaked memory
+==17240== 
+==17240== For lists of detected and suppressed errors, rerun with: -s
+==17240== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:40:10.985031-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:10.985294-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check-http-server-for-webhooks
+2023-02-06T08:40:10.989978-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:10.990194-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-order-1x-conclude
+2023-02-06T08:40:10.990549-0500 .libs/test_merchant_api_cs-16942 INFO Waiting 
on GET /orders/$ID of poll-order-wallet-start-1x (finished)
+2023-02-06T08:40:10.991103-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:10.991313-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: verify-order-1-paid
+2023-02-06T08:40:11.005617-0500 
taler-merchant-httpd-17112(3ATXAXANR19QJDBP9WSVRDY0PR) INFO Handling request 
(POST) for URL '/orders/1/paid'
+2023-02-06T08:40:11.040395-0500 
taler-merchant-httpd-17112(3ATXAXANR19QJDBP9WSVRDY0PR) INFO Executing command 
`NOTIFY X3NGG94GWF17MGFGMXFT3N8JC3B80G8AS2Q8C6VT51XAZAPC13BP0, '''
+2023-02-06T08:40:11.041075-0500 
taler-merchant-httpd-17112(3ATXAXANR19QJDBP9WSVRDY0PR) INFO PG poll job active
+2023-02-06T08:40:11.041408-0500 
taler-merchant-httpd-17112(3ATXAXANR19QJDBP9WSVRDY0PR) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:11.043095-0500 
taler-merchant-httpd-17112(3ATXAXANR19QJDBP9WSVRDY0PR) INFO Finished handling 
request for `/orders/1/paid' with MHD termination code 0
+2023-02-06T08:40:11.044646-0500 .libs/test_merchant_api_cs-16942 INFO /paid 
completed with response code 204
+2023-02-06T08:40:11.046956-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:11.047176-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-wallet-1-2
+2023-02-06T08:40:11.047903-0500 .libs/test_merchant_api_cs-16942 INFO Checking 
order status at 
http://localhost:8080/orders/1?h_contract=3BCX3KCXEQN3N2R11ZKBQ5CZ14WEXN2VT2B2A4P5R5X36ARG73023S51B1FHR6YSH9P2V2JJ8AK5V76E4GES44HDFBX8WASSFWMKW00
+2023-02-06T08:40:11.051738-0500 
taler-merchant-httpd-17112(JCBE7CDFV0MXT832AMVP5WQRSW) INFO Handling request 
(GET) for URL '/orders/1'
+2023-02-06T08:40:11.070866-0500 
taler-merchant-httpd-17112(JCBE7CDFV0MXT832AMVP5WQRSW) INFO Finished handling 
request for `/orders/1' with MHD termination code 0
+2023-02-06T08:40:11.073213-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:11.073459-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-merchant-1-2
+2023-02-06T08:40:11.073955-0500 .libs/test_merchant_api_cs-16942 INFO Getting 
order status from http://localhost:8080/private/orders/1?transfer=YES
+2023-02-06T08:40:11.077864-0500 
taler-merchant-httpd-17112(Z7F3DY1JXXYBGSMR6Z2W32AQYR) INFO Handling request 
(GET) for URL '/private/orders/1'
+2023-02-06T08:40:11.099460-0500 
taler-merchant-httpd-17112(Z7F3DY1JXXYBGSMR6Z2W32AQYR) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:11.113502-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:11.115773-0500 
taler-exchange-httpd-17126(EB3Y975NA1QBMXZ9SQ10B5B8YG) INFO Handling request 
(GET) for URL 
'/deposits/KB97D1V89T5ST9YM71MZFC47QGN8RE18YHGFHJB93D8HM4WF485VFWSSDD15W5NCMKSNXY397J091PXHQ0RG7A37THXYX9H6ZZ7CXQ0/EH1PT88999CT0RH6AN8HYY53Y9E9Y0D3XVM76NFM45JGCPNPR340/3BCX3KCXEQN3N2R11ZKBQ5CZ14WEXN2VT2B2A4P5R5X36ARG73023S51B1FHR6YSH9P2V2JJ8AK5V76E4GES44HDFBX8WASSFWMKW00/K9GCA58XD8GMG0ZZ2DM20MHT2MK4PRSV1TG0M51HKESP0G3BMYQG'
+2023-02-06T08:40:11.122287-0500 
taler-exchange-httpd-17126(EB3Y975NA1QBMXZ9SQ10B5B8YG) INFO Starting 
transaction `handle deposits GET'
+2023-02-06T08:40:11.395763-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:11.423845-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:11.564136-0500 
taler-exchange-httpd-17126(EB3Y975NA1QBMXZ9SQ10B5B8YG) INFO Request for 
`/deposits/KB97D1V89T5ST9YM71MZFC47QGN8RE18YHGFHJB93D8HM4WF485VFWSSDD15W5NCMKSNXY397J091PXHQ0RG7A37THXYX9H6ZZ7CXQ0/EH1PT88999CT0RH6AN8HYY53Y9E9Y0D3XVM76NFM45JGCPNPR340/3BCX3KCXEQN3N2R11ZKBQ5CZ14WEXN2VT2B2A4P5R5X36ARG73023S51B1FHR6YSH9P2V2JJ8AK5V76E4GES44HDFBX8WASSFWMKW00/K9GCA58XD8GMG0ZZ2DM20MHT2MK4PRSV1TG0M51HKESP0G3BMYQG'
 completed (0)
+2023-02-06T08:40:11.600234-0500 
taler-merchant-httpd-17112(Z7F3DY1JXXYBGSMR6Z2W32AQYR) INFO Finished handling 
request for `/private/orders/1' with MHD termination code 0
+2023-02-06T08:40:11.608712-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/private/orders/$ID completed with status 200
+2023-02-06T08:40:11.614997-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:11.615217-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-orders-1-paid
+2023-02-06T08:40:11.618710-0500 
taler-merchant-httpd-17112(PAP2F6QY417FHF9WGPH2F6Z7TW) INFO Handling request 
(GET) for URL '/private/orders'
+2023-02-06T08:40:11.620668-0500 
taler-merchant-httpd-17112(PAP2F6QY417FHF9WGPH2F6Z7TW) INFO Adding order `1x' 
(3) to result set
+2023-02-06T08:40:11.625735-0500 
taler-merchant-httpd-17112(PAP2F6QY417FHF9WGPH2F6Z7TW) INFO Adding order `1' 
(2) to result set
+2023-02-06T08:40:11.632932-0500 
taler-merchant-httpd-17112(PAP2F6QY417FHF9WGPH2F6Z7TW) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:11.635578-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:11.635815-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: replay-simple
+2023-02-06T08:40:11.651913-0500 
taler-merchant-httpd-17112(1ND3AF5G21W7A0VPF88ZD9E2QR) INFO Handling request 
(POST) for URL '/orders/1/pay'
+2023-02-06T08:40:11.668553-0500 
taler-merchant-httpd-17112(1ND3AF5G21W7A0VPF88ZD9E2QR) INFO Order `1' paid, 
checking for double-payment
+2023-02-06T08:40:11.672725-0500 
taler-merchant-httpd-17112(1ND3AF5G21W7A0VPF88ZD9E2QR) INFO Idempotent pay 
request for order `1', signing again
+2023-02-06T08:40:11.680818-0500 
taler-merchant-httpd-17112(1ND3AF5G21W7A0VPF88ZD9E2QR) INFO Finished handling 
request for `/orders/1/pay' with MHD termination code 0
+2023-02-06T08:40:11.682257-0500 .libs/test_merchant_api_cs-16942 INFO /pay 
completed with response code 200
+2023-02-06T08:40:11.688981-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:11.689197-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check_bank_empty-1
+2023-02-06T08:40:11.692301-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:11.692516-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: run-aggregator-aggregator
+==17247== Memcheck, a memory error detector
+==17247== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17247== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17247== Command: /home/priscilla/install/bin/taler-exchange-aggregator -c 
test_merchant_api-cs.conf -L INFO -t -y
+==17247== 
+2023-02-06T08:40:12.170298-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:12.198249-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:13.290897-0500 taler-exchange-aggregator-17247 INFO Change in 
PQ event FD to -1
+2023-02-06T08:40:13.338813-0500 taler-exchange-aggregator-17247 INFO New poll 
FD is -1
+2023-02-06T08:40:13.426015-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:13.453846-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:13.487001-0500 taler-exchange-aggregator-17247 INFO Change in 
PQ event FD to 8
+2023-02-06T08:40:13.487255-0500 taler-exchange-aggregator-17247 INFO New poll 
FD is 8
+2023-02-06T08:40:13.552726-0500 taler-exchange-aggregator-17247 INFO Draining 
KYC alerts
+2023-02-06T08:40:13.555480-0500 taler-exchange-aggregator-17247 INFO Starting 
transaction `handle kyc alerts'
+2023-02-06T08:40:13.583635-0500 taler-exchange-aggregator-17247 INFO Running 
aggregation shard
+2023-02-06T08:40:13.584728-0500 taler-exchange-aggregator-17247 INFO Starting 
transaction `begin_revolving_shard'
+2023-02-06T08:40:13.823682-0500 taler-exchange-aggregator-17247 INFO Trying to 
claim shard 0-2147483647
+2023-02-06T08:40:13.849280-0500 taler-exchange-aggregator-17247 INFO Starting 
shard [0:2147483647]!
+2023-02-06T08:40:13.850086-0500 taler-exchange-aggregator-17247 INFO Checking 
for ready deposits to aggregate
+2023-02-06T08:40:13.853786-0500 taler-exchange-aggregator-17247 INFO Starting 
READ COMMITTED DEFERRED transaction `deferred wire out'
+2023-02-06T08:40:13.862871-0500 taler-exchange-aggregator-17247 INFO Finding 
ready deposits by deadline Mon Feb 06 08:40:13 2023 (1675690813000000)
+2023-02-06T08:40:13.881099-0500 taler-exchange-aggregator-17247 INFO Found 
ready deposit!
+2023-02-06T08:40:14.008820-0500 taler-exchange-aggregator-17247 INFO Returning 
amount EUR:4.99 in KYC check
+2023-02-06T08:40:14.011850-0500 taler-exchange-aggregator-17247 INFO KYC check 
with new amount EUR:4.99
+2023-02-06T08:40:14.013349-0500 taler-exchange-aggregator-17247 INFO KYC 
check: new total is EUR:4.99
+2023-02-06T08:40:14.015875-0500 taler-exchange-aggregator-17247 INFO Preparing 
wire transfer of EUR:4.98 to GRJQ5BC0
+2023-02-06T08:40:14.028061-0500 taler-exchange-aggregator-17247 INFO 
Committing aggregation result
+2023-02-06T08:40:14.038366-0500 taler-exchange-aggregator-17247 INFO Commit 
complete, going again
+2023-02-06T08:40:14.039114-0500 taler-exchange-aggregator-17247 INFO Checking 
for ready deposits to aggregate
+2023-02-06T08:40:14.040125-0500 taler-exchange-aggregator-17247 INFO Starting 
READ COMMITTED DEFERRED transaction `deferred wire out'
+2023-02-06T08:40:14.040507-0500 taler-exchange-aggregator-17247 INFO Finding 
ready deposits by deadline Mon Feb 06 08:40:14 2023 (1675690814000000)
+2023-02-06T08:40:14.045153-0500 taler-exchange-aggregator-17247 INFO Completed 
shard [0,2147483647] after 1041 ms with 1 deposits
+2023-02-06T08:40:14.046655-0500 taler-exchange-aggregator-17247 INFO Releasing 
revolving shard aggregator 0-2147483647
+2023-02-06T08:40:14.050054-0500 taler-exchange-aggregator-17247 INFO Draining 
KYC alerts
+2023-02-06T08:40:14.050357-0500 taler-exchange-aggregator-17247 INFO Starting 
transaction `handle kyc alerts'
+2023-02-06T08:40:14.052215-0500 taler-exchange-aggregator-17247 INFO Running 
aggregation shard
+2023-02-06T08:40:14.052568-0500 taler-exchange-aggregator-17247 INFO Starting 
transaction `begin_revolving_shard'
+2023-02-06T08:40:14.119703-0500 taler-exchange-aggregator-17247 INFO Starting 
shard [0:2147483647]!
+2023-02-06T08:40:14.120035-0500 taler-exchange-aggregator-17247 INFO Checking 
for ready deposits to aggregate
+2023-02-06T08:40:14.120855-0500 taler-exchange-aggregator-17247 INFO Starting 
READ COMMITTED DEFERRED transaction `deferred wire out'
+2023-02-06T08:40:14.121145-0500 taler-exchange-aggregator-17247 INFO Finding 
ready deposits by deadline Mon Feb 06 08:40:14 2023 (1675690814000000)
+2023-02-06T08:40:14.122548-0500 taler-exchange-aggregator-17247 INFO Completed 
shard [0,2147483647] after 122 ms with 0 deposits
+2023-02-06T08:40:14.122866-0500 taler-exchange-aggregator-17247 INFO Releasing 
revolving shard aggregator 0-2147483647
+2023-02-06T08:40:14.129448-0500 taler-exchange-aggregator-17247 INFO Running 
shutdown
+2023-02-06T08:40:14.200826-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:14.229340-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+==17247== 
+==17247== HEAP SUMMARY:
+==17247==     in use at exit: 5,318 bytes in 27 blocks
+==17247==   total heap usage: 3,935 allocs, 3,908 frees, 535,087 bytes 
allocated
+==17247== 
+==17247== LEAK SUMMARY:
+==17247==    definitely lost: 0 bytes in 0 blocks
+==17247==    indirectly lost: 0 bytes in 0 blocks
+==17247==      possibly lost: 0 bytes in 0 blocks
+==17247==    still reachable: 5,318 bytes in 27 blocks
+==17247==         suppressed: 0 bytes in 0 blocks
+==17247== Rerun with --leak-check=full to see details of leaked memory
+==17247== 
+==17247== For lists of detected and suppressed errors, rerun with: -s
+==17247== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:40:14.295346-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:14.295608-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: run-aggregator-transfer
+==17254== Memcheck, a memory error detector
+==17254== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17254== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17254== Command: /home/priscilla/install/bin/taler-exchange-transfer -c 
test_merchant_api-cs.conf -L INFO -S 1 -w 0 -t
+==17254== 
+2023-02-06T08:40:15.454670-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:15.482289-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:15.903636-0500 taler-exchange-transfer-17254 INFO Change in 
PQ event FD to -1
+2023-02-06T08:40:15.949919-0500 taler-exchange-transfer-17254 INFO New poll FD 
is -1
+2023-02-06T08:40:16.087716-0500 taler-exchange-transfer-17254 INFO Change in 
PQ event FD to 8
+2023-02-06T08:40:16.089013-0500 taler-exchange-transfer-17254 INFO New poll FD 
is 8
+2023-02-06T08:40:16.113003-0500 taler-exchange-transfer-17254 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:16.141010-0500 taler-exchange-transfer-17254 INFO Trying to 
claim shard (0-1]
+2023-02-06T08:40:16.162064-0500 taler-exchange-transfer-17254 INFO Claimed new 
shard
+2023-02-06T08:40:16.163125-0500 taler-exchange-transfer-17254 INFO Starting 
with shard [0,1)
+2023-02-06T08:40:16.164488-0500 taler-exchange-transfer-17254 INFO Checking 
for 1 pending wire transfers [0-...)
+2023-02-06T08:40:16.165438-0500 taler-exchange-transfer-17254 INFO Starting 
READ COMMITTED transaction `aggregator run transfer`
+2023-02-06T08:40:16.178378-0500 taler-exchange-transfer-17254 INFO Batch 
complete
+2023-02-06T08:40:16.180808-0500 taler-exchange-transfer-17254 INFO Shard [0,0) 
completed
+2023-02-06T08:40:16.181781-0500 taler-exchange-transfer-17254 INFO Completing 
shard 0-1
+2023-02-06T08:40:16.194374-0500 taler-exchange-transfer-17254 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:16.196999-0500 taler-exchange-transfer-17254 INFO Trying to 
claim shard (1-2]
+2023-02-06T08:40:16.204230-0500 taler-exchange-transfer-17254 INFO Claimed new 
shard
+2023-02-06T08:40:16.204487-0500 taler-exchange-transfer-17254 INFO Starting 
with shard [1,2)
+2023-02-06T08:40:16.204796-0500 taler-exchange-transfer-17254 INFO Checking 
for 1 pending wire transfers [1-...)
+2023-02-06T08:40:16.205093-0500 taler-exchange-transfer-17254 INFO Starting 
READ COMMITTED transaction `aggregator run transfer`
+2023-02-06T08:40:16.207592-0500 taler-exchange-transfer-17254 INFO Starting 
wire transfer 1
+2023-02-06T08:40:16.232006-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:16.259707-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:16.676018-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/transfer'
+2023-02-06T08:40:16.676243-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/transfer' for account `2'
+2023-02-06T08:40:16.677798-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/transfer'
+2023-02-06T08:40:16.677966-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/transfer' for account `2'
+2023-02-06T08:40:16.678124-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/transfer'
+2023-02-06T08:40:16.678285-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/transfer' for account `2'
+2023-02-06T08:40:16.684743-0500 .libs/test_merchant_api_cs-16942 INFO Making 
transfer 2 from 2 to 3 over EUR:4.98 and subject JF3505T0; for exchange: 
http://localhost:8081/
+2023-02-06T08:40:16.685684-0500 .libs/test_merchant_api_cs-16942 INFO 
Receiving incoming wire transfer: 2->3, subject: JF3505T0, amount: EUR:4.98, 
from http://localhost:8081/
+2023-02-06T08:40:16.756361-0500 taler-exchange-transfer-17254 INFO Wire 
transfer 1 completed successfully
+2023-02-06T08:40:16.770971-0500 taler-exchange-transfer-17254 INFO Batch 
complete
+2023-02-06T08:40:16.786340-0500 taler-exchange-transfer-17254 INFO Shard [1,1) 
completed
+2023-02-06T08:40:16.786560-0500 taler-exchange-transfer-17254 INFO Completing 
shard 1-2
+2023-02-06T08:40:16.794470-0500 taler-exchange-transfer-17254 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:16.796175-0500 taler-exchange-transfer-17254 INFO Trying to 
claim shard (2-3]
+2023-02-06T08:40:16.804227-0500 taler-exchange-transfer-17254 INFO Claimed new 
shard
+2023-02-06T08:40:16.804404-0500 taler-exchange-transfer-17254 INFO Starting 
with shard [2,3)
+2023-02-06T08:40:16.804630-0500 taler-exchange-transfer-17254 INFO Checking 
for 1 pending wire transfers [2-...)
+2023-02-06T08:40:16.804853-0500 taler-exchange-transfer-17254 INFO Starting 
READ COMMITTED transaction `aggregator run transfer`
+2023-02-06T08:40:16.807850-0500 taler-exchange-transfer-17254 INFO No more 
pending wire transfers, shutting down (because we are in test mode)
+2023-02-06T08:40:16.811608-0500 taler-exchange-transfer-17254 INFO Running 
shutdown
+==17254== 
+==17254== HEAP SUMMARY:
+==17254==     in use at exit: 5,291 bytes in 26 blocks
+==17254==   total heap usage: 3,841 allocs, 3,815 frees, 730,243 bytes 
allocated
+==17254== 
+==17254== LEAK SUMMARY:
+==17254==    definitely lost: 0 bytes in 0 blocks
+==17254==    indirectly lost: 0 bytes in 0 blocks
+==17254==      possibly lost: 0 bytes in 0 blocks
+==17254==    still reachable: 5,291 bytes in 26 blocks
+==17254==         suppressed: 0 bytes in 0 blocks
+==17254== Rerun with --leak-check=full to see details of leaked memory
+==17254== 
+==17254== For lists of detected and suppressed errors, rerun with: -s
+==17254== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:40:16.952121-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:16.952390-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check_bank_transfer-498c
+2023-02-06T08:40:16.953483-0500 .libs/test_merchant_api_cs-16942 INFO Deposit 
reference NOT given
+2023-02-06T08:40:16.955082-0500 .libs/test_merchant_api_cs-16942 INFO 
converted debit_payto (payto://x-taler-bank/localhost/2?receiver-name=2) to 
debit_account (2)
+2023-02-06T08:40:16.955978-0500 .libs/test_merchant_api_cs-16942 INFO 
converted credit_payto (payto://x-taler-bank/localhost/3?receiver-name=3) to 
credit_account (3)
+2023-02-06T08:40:16.960266-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:16.960491-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: post-transfer-1
+2023-02-06T08:40:16.961635-0500 .libs/test_merchant_api_cs-16942 INFO Looking 
for transfer of EUR:4.98 from payto://x-taler-bank/localhost/3?receiver-name=3 
at bank
+2023-02-06T08:40:16.964403-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting debit history at 
`http://localhost:8082/2/history/outgoing?delta=-9223372036854775807'
+2023-02-06T08:40:16.968563-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/outgoing'
+2023-02-06T08:40:16.968803-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/outgoing' for account `2'
+2023-02-06T08:40:16.971091-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/outgoing connection 0x838bca0
+2023-02-06T08:40:16.972671-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for -9223372036854775807 records from 2
+2023-02-06T08:40:16.975401-0500 .libs/test_merchant_api_cs-16942 INFO 
Returning -9223372036854775807 debit transactions starting (inclusive) from 2
+2023-02-06T08:40:16.989284-0500 .libs/test_merchant_api_cs-16942 INFO Bank 
reports transfer of EUR:4.98 to payto://x-taler-bank/localhost/3?receiver-name=3
+2023-02-06T08:40:16.991497-0500 .libs/test_merchant_api_cs-16942 INFO Bank 
transfer found, checking with merchant backend at http://localhost:8080/ about 
EUR:4.98 from payto://x-taler-bank/localhost/3?receiver-name=3 to 
http://localhost:8081/ with JF3505T0
+2023-02-06T08:40:17.004460-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Handling request 
(POST) for URL '/private/transfers'
+2023-02-06T08:40:17.007934-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Starting merchant 
DB transaction `post-transfers'
+2023-02-06T08:40:17.013649-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Lookup transfer 
returned 0
+2023-02-06T08:40:17.015100-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Transfer is not yet 
known
+2023-02-06T08:40:17.018037-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) WARNING Bank account 
`payto://x-taler-bank/localhost/3?receiver-name=3' is configured at row 7
+2023-02-06T08:40:17.018977-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Inserting new 
transfer
+2023-02-06T08:40:17.022250-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Committing merchant 
DB transaction post-transfers
+2023-02-06T08:40:17.027333-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO post-transfer 
committed successfully
+2023-02-06T08:40:17.028355-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Suspending POST 
/private/transfers handling while working with exchange
+2023-02-06T08:40:17.029428-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:17.031754-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Requesting transfer 
details from exchange
+2023-02-06T08:40:17.036041-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:17.037756-0500 
taler-exchange-httpd-17126(QVD0EG1J9W6X18VTD4APD235G4) INFO Handling request 
(GET) for URL '/transfers/PF6Q6K7H0PSJ1YHRYDVYGVBSCS7V3GAC5081BC4AWCHXVBV91M00'
+2023-02-06T08:40:17.039691-0500 
taler-exchange-httpd-17126(QVD0EG1J9W6X18VTD4APD235G4) INFO Starting 
transaction `run transfers GET'
+2023-02-06T08:40:17.066285-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:40:17.066604-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:40:17.073498-0500 
taler-exchange-httpd-17126(QVD0EG1J9W6X18VTD4APD235G4) INFO Request for 
`/transfers/PF6Q6K7H0PSJ1YHRYDVYGVBSCS7V3GAC5081BC4AWCHXVBV91M00' completed (0)
+2023-02-06T08:40:17.094645-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Got response code 
200 from exchange for GET /transfers/$WTID
+2023-02-06T08:40:17.097242-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Starting merchant 
DB transaction insert transfer details (READ COMMITTED)
+2023-02-06T08:40:17.108670-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Committing merchant 
DB transaction insert transfer details
+2023-02-06T08:40:17.116854-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Transfer details 
inserted, resuming request...
+2023-02-06T08:40:17.118678-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Starting merchant 
DB transaction `post-transfers'
+2023-02-06T08:40:17.120887-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Lookup transfer 
returned 1
+2023-02-06T08:40:17.122987-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Transfer exists in 
DB (verified: false, exchange signature: true)
+2023-02-06T08:40:17.151799-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Committing merchant 
DB transaction post-transfers
+2023-02-06T08:40:17.171748-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO post-transfer 
committed uselessly
+2023-02-06T08:40:17.183254-0500 
taler-merchant-httpd-17112(AE92J7FN7GHKG4NZEF4M74J96G) INFO Finished handling 
request for `/private/transfers' with MHD termination code 0
+FIXME{"total": "EUR:4.99", "wire_fee": "EUR:0.01", "execution_time": {"t_s": 
1675690813}, "deposit_sums": [{"order_id": "1", "deposit_value": "EUR:5", 
"deposit_fee": "EUR:0.01"}]}2023-02-06T08:40:17.193836-0500 
.libs/test_merchant_api_cs-16942 INFO Running command `pay'
+2023-02-06T08:40:17.194082-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: post-transfer-bad
+2023-02-06T08:40:17.201482-0500 
taler-merchant-httpd-17112(11PCTJ48JD2QAKABXK6XVZ46SG) INFO Handling request 
(POST) for URL '/private/transfers'
+2023-02-06T08:40:17.203008-0500 
taler-merchant-httpd-17112(11PCTJ48JD2QAKABXK6XVZ46SG) INFO Starting merchant 
DB transaction `post-transfers'
+2023-02-06T08:40:17.204833-0500 
taler-merchant-httpd-17112(11PCTJ48JD2QAKABXK6XVZ46SG) INFO Lookup transfer 
returned 0
+2023-02-06T08:40:17.205201-0500 
taler-merchant-httpd-17112(11PCTJ48JD2QAKABXK6XVZ46SG) INFO Transfer is not yet 
known
+2023-02-06T08:40:17.206177-0500 
taler-merchant-httpd-17112(11PCTJ48JD2QAKABXK6XVZ46SG) WARNING Bank account 
`payto://x-taler-bank/localhost/3?receiver-name=3' is configured at row 7
+2023-02-06T08:40:17.206568-0500 
taler-merchant-httpd-17112(11PCTJ48JD2QAKABXK6XVZ46SG) INFO Inserting new 
transfer
+2023-02-06T08:40:17.207678-0500 
taler-merchant-httpd-17112(11PCTJ48JD2QAKABXK6XVZ46SG) INFO Committing merchant 
DB transaction post-transfers
+2023-02-06T08:40:17.215400-0500 
taler-merchant-httpd-17112(11PCTJ48JD2QAKABXK6XVZ46SG) INFO post-transfer 
committed successfully
+2023-02-06T08:40:17.215756-0500 
taler-merchant-httpd-17112(11PCTJ48JD2QAKABXK6XVZ46SG) INFO Suspending POST 
/private/transfers handling while working with exchange
+2023-02-06T08:40:17.482894-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:17.512628-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:19.515671-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:19.544700-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:21.547314-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:22.099119-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:22.160928-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:22.160991-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:23.221579-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://192.0.2.1/404/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:40:23.221959-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:40:23.222242-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://192.0.2.1/404/
+2023-02-06T08:40:24.162312-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:24.163776-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:24.186229-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:24.186317-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:26.188694-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:26.189119-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:26.214120-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:26.214207-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:28.215141-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:28.216611-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:28.236348-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:28.236348-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:30.228574-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://192.0.2.1/404/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:40:30.228927-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:40:30.229214-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://192.0.2.1/404/
+2023-02-06T08:40:30.236914-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:30.238682-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:30.260875-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:30.260916-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:32.223828-0500 
taler-merchant-httpd-17112(11PCTJ48JD2QAKABXK6XVZ46SG) INFO Finished handling 
request for `/private/transfers' with MHD termination code 0
+2023-02-06T08:40:32.226064-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.226316-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-transfers-1
+2023-02-06T08:40:32.234695-0500 
taler-merchant-httpd-17112(CTZVNY64F72S08F909JSDAVHR0) INFO Handling request 
(GET) for URL '/private/transfers'
+2023-02-06T08:40:32.252233-0500 
taler-merchant-httpd-17112(CTZVNY64F72S08F909JSDAVHR0) INFO Finished handling 
request for `/private/transfers' with MHD termination code 0
+2023-02-06T08:40:32.261682-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:32.268285-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.268536-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: delete-transfer-1
+2023-02-06T08:40:32.272007-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:32.275717-0500 
taler-merchant-httpd-17112(071NCT6T13NFGA9F0D037PRM40) INFO Handling request 
(DELETE) for URL '/private/transfers/2'
+2023-02-06T08:40:32.296198-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:32.306190-0500 
taler-merchant-httpd-17112(071NCT6T13NFGA9F0D037PRM40) INFO Finished handling 
request for `/private/transfers/2' with MHD termination code 0
+2023-02-06T08:40:32.307385-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:32.308552-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.308778-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-merchant-1-2
+2023-02-06T08:40:32.309221-0500 .libs/test_merchant_api_cs-16942 INFO Getting 
order status from http://localhost:8080/private/orders/1?transfer=YES
+2023-02-06T08:40:32.313567-0500 
taler-merchant-httpd-17112(PQR0J98RGVC4GZM3GNY84RP0N0) INFO Handling request 
(GET) for URL '/private/orders/1'
+2023-02-06T08:40:32.333325-0500 
taler-merchant-httpd-17112(PQR0J98RGVC4GZM3GNY84RP0N0) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:32.344414-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:32.346091-0500 
taler-exchange-httpd-17126(3K8K1BA1YVGR6N2H4GYTSRMF30) INFO Handling request 
(GET) for URL 
'/deposits/KB97D1V89T5ST9YM71MZFC47QGN8RE18YHGFHJB93D8HM4WF485VFWSSDD15W5NCMKSNXY397J091PXHQ0RG7A37THXYX9H6ZZ7CXQ0/EH1PT88999CT0RH6AN8HYY53Y9E9Y0D3XVM76NFM45JGCPNPR340/3BCX3KCXEQN3N2R11ZKBQ5CZ14WEXN2VT2B2A4P5R5X36ARG73023S51B1FHR6YSH9P2V2JJ8AK5V76E4GES44HDFBX8WASSFWMKW00/K9GCA58XD8GMG0ZZ2DM20MHT2MK4PRSV1TG0M51HKESP0G3BMYQG'
+2023-02-06T08:40:32.352629-0500 
taler-exchange-httpd-17126(3K8K1BA1YVGR6N2H4GYTSRMF30) INFO Starting 
transaction `handle deposits GET'
+2023-02-06T08:40:32.365733-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:40:32.366033-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:40:32.370758-0500 
taler-exchange-httpd-17126(3K8K1BA1YVGR6N2H4GYTSRMF30) INFO Request for 
`/deposits/KB97D1V89T5ST9YM71MZFC47QGN8RE18YHGFHJB93D8HM4WF485VFWSSDD15W5NCMKSNXY397J091PXHQ0RG7A37THXYX9H6ZZ7CXQ0/EH1PT88999CT0RH6AN8HYY53Y9E9Y0D3XVM76NFM45JGCPNPR340/3BCX3KCXEQN3N2R11ZKBQ5CZ14WEXN2VT2B2A4P5R5X36ARG73023S51B1FHR6YSH9P2V2JJ8AK5V76E4GES44HDFBX8WASSFWMKW00/K9GCA58XD8GMG0ZZ2DM20MHT2MK4PRSV1TG0M51HKESP0G3BMYQG'
 completed (0)
+2023-02-06T08:40:32.438281-0500 
taler-merchant-httpd-17112(PQR0J98RGVC4GZM3GNY84RP0N0) INFO Notifying clients 
of new order 2 at GRJQ5BC0
+2023-02-06T08:40:32.438716-0500 
taler-merchant-httpd-17112(PQR0J98RGVC4GZM3GNY84RP0N0) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'0000000000004005YG42PFNSG000000A''
+2023-02-06T08:40:32.439384-0500 
taler-merchant-httpd-17112(PQR0J98RGVC4GZM3GNY84RP0N0) INFO PG poll job active
+2023-02-06T08:40:32.439716-0500 
taler-merchant-httpd-17112(PQR0J98RGVC4GZM3GNY84RP0N0) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:32.448146-0500 
taler-merchant-httpd-17112(PQR0J98RGVC4GZM3GNY84RP0N0) INFO Finished handling 
request for `/private/orders/1' with MHD termination code 0
+2023-02-06T08:40:32.455062-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/private/orders/$ID completed with status 200
+2023-02-06T08:40:32.460495-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.460714-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: forget-1
+2023-02-06T08:40:32.469823-0500 
taler-merchant-httpd-17112(AT20MX5745NHG6AF4X4G9QD8EG) INFO Handling request 
(PATCH) for URL '/private/orders/1/forget'
+2023-02-06T08:40:32.471060-0500 
taler-merchant-httpd-17112(AT20MX5745NHG6AF4X4G9QD8EG) INFO Starting merchant 
DB transaction `forget order'
+2023-02-06T08:40:32.485965-0500 
taler-merchant-httpd-17112(AT20MX5745NHG6AF4X4G9QD8EG) INFO Forgot `dummy_obj'
+2023-02-06T08:40:32.506028-0500 
taler-merchant-httpd-17112(AT20MX5745NHG6AF4X4G9QD8EG) INFO Committing merchant 
DB transaction forget order
+2023-02-06T08:40:32.516276-0500 
taler-merchant-httpd-17112(AT20MX5745NHG6AF4X4G9QD8EG) INFO Finished handling 
request for `/private/orders/1/forget' with MHD termination code 0
+2023-02-06T08:40:32.517812-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/orders/$ORDER_ID/forget completed with response code 200
+2023-02-06T08:40:32.519935-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.520165-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-merchant-1-forget-1
+2023-02-06T08:40:32.520601-0500 .libs/test_merchant_api_cs-16942 INFO Getting 
order status from http://localhost:8080/private/orders/1?transfer=YES
+2023-02-06T08:40:32.524353-0500 
taler-merchant-httpd-17112(7PS4YDPHQS6HASZNAKD8EX9A78) INFO Handling request 
(GET) for URL '/private/orders/1'
+2023-02-06T08:40:32.548557-0500 
taler-merchant-httpd-17112(7PS4YDPHQS6HASZNAKD8EX9A78) INFO Finished handling 
request for `/private/orders/1' with MHD termination code 0
+2023-02-06T08:40:32.554906-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/private/orders/$ID completed with status 200
+2023-02-06T08:40:32.567943-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.568165-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: forget-unforgettable
+2023-02-06T08:40:32.573155-0500 
taler-merchant-httpd-17112(TGTYCWA03CXY76WFGWCBB0AWVW) INFO Handling request 
(PATCH) for URL '/private/orders/1/forget'
+2023-02-06T08:40:32.573969-0500 
taler-merchant-httpd-17112(TGTYCWA03CXY76WFGWCBB0AWVW) INFO Starting merchant 
DB transaction `forget order'
+2023-02-06T08:40:32.578918-0500 
taler-merchant-httpd-17112(TGTYCWA03CXY76WFGWCBB0AWVW) WARNING Did not find 
required salt to forget field `amount'
+2023-02-06T08:40:32.580087-0500 
taler-merchant-httpd-17112(TGTYCWA03CXY76WFGWCBB0AWVW) WARNING Matching path 
`amount' not forgettable!
+2023-02-06T08:40:32.580554-0500 
taler-merchant-httpd-17112(TGTYCWA03CXY76WFGWCBB0AWVW) INFO Forgot `amount'
+2023-02-06T08:40:32.581099-0500 
taler-merchant-httpd-17112(TGTYCWA03CXY76WFGWCBB0AWVW) INFO Rolling back 
merchant DB transaction `forget order'
+2023-02-06T08:40:32.585448-0500 
taler-merchant-httpd-17112(TGTYCWA03CXY76WFGWCBB0AWVW) INFO Finished handling 
request for `/private/orders/1/forget' with MHD termination code 0
+2023-02-06T08:40:32.587012-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/orders/$ORDER_ID/forget completed with response code 409
+2023-02-06T08:40:32.588110-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.588324-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: forget-order-nx
+2023-02-06T08:40:32.593013-0500 
taler-merchant-httpd-17112(ZP7XT3T179YJC63SDEZSMAFZP8) INFO Handling request 
(PATCH) for URL '/private/orders/nx-order/forget'
+2023-02-06T08:40:32.593799-0500 
taler-merchant-httpd-17112(ZP7XT3T179YJC63SDEZSMAFZP8) INFO Starting merchant 
DB transaction `forget order'
+2023-02-06T08:40:32.595085-0500 
taler-merchant-httpd-17112(ZP7XT3T179YJC63SDEZSMAFZP8) INFO Rolling back 
merchant DB transaction `forget order'
+2023-02-06T08:40:32.598331-0500 
taler-merchant-httpd-17112(ZP7XT3T179YJC63SDEZSMAFZP8) INFO Finished handling 
request for `/private/orders/nx-order/forget' with MHD termination code 0
+2023-02-06T08:40:32.599517-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/orders/$ORDER_ID/forget completed with response code 404
+2023-02-06T08:40:32.600069-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.600280-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: forget-order-array-elem
+2023-02-06T08:40:32.604749-0500 
taler-merchant-httpd-17112(M9TCP0V9QPRGKVEBWMFYAP7A5R) INFO Handling request 
(PATCH) for URL '/private/orders/1/forget'
+2023-02-06T08:40:32.605536-0500 
taler-merchant-httpd-17112(M9TCP0V9QPRGKVEBWMFYAP7A5R) INFO Starting merchant 
DB transaction `forget order'
+2023-02-06T08:40:32.613237-0500 
taler-merchant-httpd-17112(M9TCP0V9QPRGKVEBWMFYAP7A5R) INFO Forgot `item'
+2023-02-06T08:40:32.624974-0500 
taler-merchant-httpd-17112(M9TCP0V9QPRGKVEBWMFYAP7A5R) INFO Committing merchant 
DB transaction forget order
+2023-02-06T08:40:32.660154-0500 
taler-merchant-httpd-17112(M9TCP0V9QPRGKVEBWMFYAP7A5R) INFO Finished handling 
request for `/private/orders/1/forget' with MHD termination code 0
+2023-02-06T08:40:32.660765-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/orders/$ORDER_ID/forget completed with response code 200
+2023-02-06T08:40:32.661377-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.661588-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-merchant-1-forget-2
+2023-02-06T08:40:32.662032-0500 .libs/test_merchant_api_cs-16942 INFO Getting 
order status from http://localhost:8080/private/orders/1?transfer=YES
+2023-02-06T08:40:32.665322-0500 
taler-merchant-httpd-17112(6F4RD2C69SB0F2TSA6VPWMNNP8) INFO Handling request 
(GET) for URL '/private/orders/1'
+2023-02-06T08:40:32.688644-0500 
taler-merchant-httpd-17112(6F4RD2C69SB0F2TSA6VPWMNNP8) INFO Finished handling 
request for `/private/orders/1' with MHD termination code 0
+2023-02-06T08:40:32.695072-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/private/orders/$ID completed with status 200
+2023-02-06T08:40:32.701649-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.701874-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: forget-order-array-wc
+2023-02-06T08:40:32.706468-0500 
taler-merchant-httpd-17112(ATKH9AKX3VD55QVE5B5SB28490) INFO Handling request 
(PATCH) for URL '/private/orders/1/forget'
+2023-02-06T08:40:32.707318-0500 
taler-merchant-httpd-17112(ATKH9AKX3VD55QVE5B5SB28490) INFO Starting merchant 
DB transaction `forget order'
+2023-02-06T08:40:32.714647-0500 
taler-merchant-httpd-17112(ATKH9AKX3VD55QVE5B5SB28490) INFO Forgot `item'
+2023-02-06T08:40:32.716307-0500 
taler-merchant-httpd-17112(ATKH9AKX3VD55QVE5B5SB28490) INFO Forgot `item'
+2023-02-06T08:40:32.726200-0500 
taler-merchant-httpd-17112(ATKH9AKX3VD55QVE5B5SB28490) INFO Committing merchant 
DB transaction forget order
+2023-02-06T08:40:32.749139-0500 
taler-merchant-httpd-17112(ATKH9AKX3VD55QVE5B5SB28490) INFO Finished handling 
request for `/private/orders/1/forget' with MHD termination code 0
+2023-02-06T08:40:32.749773-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/orders/$ORDER_ID/forget completed with response code 200
+2023-02-06T08:40:32.750333-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.750574-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-merchant-1-forget-3
+2023-02-06T08:40:32.751022-0500 .libs/test_merchant_api_cs-16942 INFO Getting 
order status from http://localhost:8080/private/orders/1?transfer=YES
+2023-02-06T08:40:32.754335-0500 
taler-merchant-httpd-17112(FN4KQ9CQNA9SH3SYVBYVNYS11G) INFO Handling request 
(GET) for URL '/private/orders/1'
+2023-02-06T08:40:32.775740-0500 
taler-merchant-httpd-17112(FN4KQ9CQNA9SH3SYVBYVNYS11G) INFO Finished handling 
request for `/private/orders/1' with MHD termination code 0
+2023-02-06T08:40:32.782369-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/private/orders/$ID completed with status 200
+2023-02-06T08:40:32.789680-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.789899-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: forget-order-malformed
+2023-02-06T08:40:32.794706-0500 
taler-merchant-httpd-17112(3PSDNX3YDA9JW1AVEGEKR1W4JW) INFO Handling request 
(PATCH) for URL '/private/orders/1/forget'
+2023-02-06T08:40:32.795526-0500 
taler-merchant-httpd-17112(3PSDNX3YDA9JW1AVEGEKR1W4JW) INFO Starting merchant 
DB transaction `forget order'
+2023-02-06T08:40:32.801210-0500 
taler-merchant-httpd-17112(3PSDNX3YDA9JW1AVEGEKR1W4JW) INFO Rolling back 
merchant DB transaction `forget order'
+2023-02-06T08:40:32.805599-0500 
taler-merchant-httpd-17112(3PSDNX3YDA9JW1AVEGEKR1W4JW) INFO Finished handling 
request for `/private/orders/1/forget' with MHD termination code 0
+2023-02-06T08:40:32.806863-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/orders/$ORDER_ID/forget completed with response code 400
+2023-02-06T08:40:32.807420-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.807630-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: post-products-p3
+2023-02-06T08:40:32.812644-0500 
taler-merchant-httpd-17112(V5221JM6FA7MNABY17S6HH2504) INFO Handling request 
(POST) for URL '/private/products'
+2023-02-06T08:40:32.814080-0500 
taler-merchant-httpd-17112(V5221JM6FA7MNABY17S6HH2504) INFO Starting merchant 
DB transaction `/post products'
+2023-02-06T08:40:32.816475-0500 
taler-merchant-httpd-17112(V5221JM6FA7MNABY17S6HH2504) INFO Committing merchant 
DB transaction /post products
+2023-02-06T08:40:32.826886-0500 
taler-merchant-httpd-17112(V5221JM6FA7MNABY17S6HH2504) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T08:40:32.827420-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/products completed with response code 204
+2023-02-06T08:40:32.827926-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.828135-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: patch-products-p3
+2023-02-06T08:40:32.833948-0500 
taler-merchant-httpd-17112(112FSEYJE248R68PKKJFK97GHR) INFO Handling request 
(PATCH) for URL '/private/products/product-3'
+2023-02-06T08:40:32.849027-0500 
taler-merchant-httpd-17112(112FSEYJE248R68PKKJFK97GHR) INFO Finished handling 
request for `/private/products/product-3' with MHD termination code 0
+2023-02-06T08:40:32.849559-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/products/$ID completed with response code 204
+2023-02-06T08:40:32.850071-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.850280-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: lock-product-p3
+2023-02-06T08:40:32.854808-0500 
taler-merchant-httpd-17112(WD7H8QK0B8QN5Q30T8VYKDWBVM) INFO Handling request 
(POST) for URL '/private/products/product-3/lock'
+2023-02-06T08:40:32.871325-0500 
taler-merchant-httpd-17112(WD7H8QK0B8QN5Q30T8VYKDWBVM) INFO Finished handling 
request for `/private/products/product-3/lock' with MHD termination code 0
+2023-02-06T08:40:32.871842-0500 .libs/test_merchant_api_cs-16942 INFO LOCK 
/products/$ID completed with response code 204
+2023-02-06T08:40:32.872340-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.872549-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-p3-wm-nx
+2023-02-06T08:40:32.884275-0500 
taler-merchant-httpd-17112(6C9P9D9GMB16GANEF58E823ARM) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:32.897051-0500 
taler-merchant-httpd-17112(6C9P9D9GMB16GANEF58E823ARM) WARNING No wire method 
available for instance 'default'
+2023-02-06T08:40:32.900041-0500 
taler-merchant-httpd-17112(6C9P9D9GMB16GANEF58E823ARM) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:32.901769-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.902005-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-p3-pd-nx
+2023-02-06T08:40:32.909579-0500 
taler-merchant-httpd-17112(GMDX2EQ46F843WTGFHYC7TQG2G) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:32.916514-0500 
taler-merchant-httpd-17112(GMDX2EQ46F843WTGFHYC7TQG2G) WARNING Product 
unknown-product from order unknown
+2023-02-06T08:40:32.920052-0500 
taler-merchant-httpd-17112(GMDX2EQ46F843WTGFHYC7TQG2G) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:32.921781-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.922017-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-p3-not-enough-stock
+2023-02-06T08:40:32.929564-0500 
taler-merchant-httpd-17112(B8E4Y1VD6TQ6ZB7A1NYMK3ET5R) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:32.959076-0500 
taler-merchant-httpd-17112(B8E4Y1VD6TQ6ZB7A1NYMK3ET5R) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:40:32.964797-0500 
taler-merchant-httpd-17112(B8E4Y1VD6TQ6ZB7A1NYMK3ET5R) INFO Rolling back 
merchant DB transaction `insert_order'
+2023-02-06T08:40:32.971006-0500 
taler-merchant-httpd-17112(B8E4Y1VD6TQ6ZB7A1NYMK3ET5R) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:32.973922-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:32.974167-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-p3
+2023-02-06T08:40:32.986279-0500 
taler-merchant-httpd-17112(S39DJN6DRTPGCP36JZCJA410YM) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:33.007842-0500 
taler-merchant-httpd-17112(S39DJN6DRTPGCP36JZCJA410YM) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:40:33.015772-0500 
taler-merchant-httpd-17112(S39DJN6DRTPGCP36JZCJA410YM) INFO Notifying clients 
of new order 5 at GRJQ5BC0
+2023-02-06T08:40:33.016146-0500 
taler-merchant-httpd-17112(S39DJN6DRTPGCP36JZCJA410YM) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000A005YG42SPNP80000000''
+2023-02-06T08:40:33.016775-0500 
taler-merchant-httpd-17112(S39DJN6DRTPGCP36JZCJA410YM) INFO PG poll job active
+2023-02-06T08:40:33.017108-0500 
taler-merchant-httpd-17112(S39DJN6DRTPGCP36JZCJA410YM) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:33.017362-0500 
taler-merchant-httpd-17112(S39DJN6DRTPGCP36JZCJA410YM) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T08:40:33.039987-0500 
taler-merchant-httpd-17112(S39DJN6DRTPGCP36JZCJA410YM) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:33.041154-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/order-p3/claim
+2023-02-06T08:40:33.046304-0500 
taler-merchant-httpd-17112(NV89N1Y0C7ZJYFZYN3617W2RWW) INFO Handling request 
(POST) for URL '/orders/order-p3/claim'
+2023-02-06T08:40:33.047247-0500 
taler-merchant-httpd-17112(NV89N1Y0C7ZJYFZYN3617W2RWW) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:33.066504-0500 
taler-merchant-httpd-17112(NV89N1Y0C7ZJYFZYN3617W2RWW) INFO Notifying clients 
of new order 5 at GRJQ5BC0
+2023-02-06T08:40:33.066881-0500 
taler-merchant-httpd-17112(NV89N1Y0C7ZJYFZYN3617W2RWW) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000A005YG42SJVM00000001''
+2023-02-06T08:40:33.067484-0500 
taler-merchant-httpd-17112(NV89N1Y0C7ZJYFZYN3617W2RWW) INFO PG poll job active
+2023-02-06T08:40:33.067816-0500 
taler-merchant-httpd-17112(NV89N1Y0C7ZJYFZYN3617W2RWW) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:33.068072-0500 
taler-merchant-httpd-17112(NV89N1Y0C7ZJYFZYN3617W2RWW) INFO Committing merchant 
DB transaction claim order
+2023-02-06T08:40:33.092479-0500 
taler-merchant-httpd-17112(NV89N1Y0C7ZJYFZYN3617W2RWW) INFO Finished handling 
request for `/orders/order-p3/claim' with MHD termination code 0
+2023-02-06T08:40:33.097892-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:40:33.117529-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:33.117796-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: delete-order-paid
+2023-02-06T08:40:33.121487-0500 
taler-merchant-httpd-17112(0HQ5Z3SDJ0X41G1NGJFYW6HF94) INFO Handling request 
(DELETE) for URL '/private/orders/1'
+2023-02-06T08:40:33.127765-0500 
taler-merchant-httpd-17112(0HQ5Z3SDJ0X41G1NGJFYW6HF94) INFO Finished handling 
request for `/private/orders/1' with MHD termination code 0
+2023-02-06T08:40:33.129475-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:33.129710-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-no-id
+2023-02-06T08:40:33.137129-0500 
taler-merchant-httpd-17112(MJ9SGFM6CA7HT9W2R1WP67B74M) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:33.148589-0500 
taler-merchant-httpd-17112(MJ9SGFM6CA7HT9W2R1WP67B74M) INFO Assigning order ID 
`2023.037-01A9GSKY59636' server-side
+2023-02-06T08:40:33.160287-0500 
taler-merchant-httpd-17112(MJ9SGFM6CA7HT9W2R1WP67B74M) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:40:33.164672-0500 
taler-merchant-httpd-17112(MJ9SGFM6CA7HT9W2R1WP67B74M) INFO Notifying clients 
of new order 6 at GRJQ5BC0
+2023-02-06T08:40:33.165015-0500 
taler-merchant-httpd-17112(MJ9SGFM6CA7HT9W2R1WP67B74M) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000C005YG42SPNP80000000''
+2023-02-06T08:40:33.165612-0500 
taler-merchant-httpd-17112(MJ9SGFM6CA7HT9W2R1WP67B74M) INFO PG poll job active
+2023-02-06T08:40:33.165920-0500 
taler-merchant-httpd-17112(MJ9SGFM6CA7HT9W2R1WP67B74M) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:33.166154-0500 
taler-merchant-httpd-17112(MJ9SGFM6CA7HT9W2R1WP67B74M) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T08:40:33.172997-0500 
taler-merchant-httpd-17112(MJ9SGFM6CA7HT9W2R1WP67B74M) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:33.174106-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/2023.037-01A9GSKY59636/claim
+2023-02-06T08:40:33.179375-0500 
taler-merchant-httpd-17112(H4V2YPJVNX9MP6N1WZT3CE4TA0) INFO Handling request 
(POST) for URL '/orders/2023.037-01A9GSKY59636/claim'
+2023-02-06T08:40:33.180321-0500 
taler-merchant-httpd-17112(H4V2YPJVNX9MP6N1WZT3CE4TA0) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:33.197001-0500 
taler-merchant-httpd-17112(H4V2YPJVNX9MP6N1WZT3CE4TA0) INFO Notifying clients 
of new order 6 at GRJQ5BC0
+2023-02-06T08:40:33.197348-0500 
taler-merchant-httpd-17112(H4V2YPJVNX9MP6N1WZT3CE4TA0) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000C005YG42SPNP80000001''
+2023-02-06T08:40:33.197912-0500 
taler-merchant-httpd-17112(H4V2YPJVNX9MP6N1WZT3CE4TA0) INFO PG poll job active
+2023-02-06T08:40:33.198209-0500 
taler-merchant-httpd-17112(H4V2YPJVNX9MP6N1WZT3CE4TA0) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:33.198442-0500 
taler-merchant-httpd-17112(H4V2YPJVNX9MP6N1WZT3CE4TA0) INFO Committing merchant 
DB transaction claim order
+2023-02-06T08:40:33.223550-0500 
taler-merchant-httpd-17112(H4V2YPJVNX9MP6N1WZT3CE4TA0) INFO Finished handling 
request for `/orders/2023.037-01A9GSKY59636/claim' with MHD termination code 0
+2023-02-06T08:40:33.228438-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:40:33.241409-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:33.241629-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check_bank_empty-2
+2023-02-06T08:40:33.243552-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay'
+2023-02-06T08:40:33.243895-0500 .libs/test_merchant_api_cs-16942 INFO Exiting 
from batch: pay
+2023-02-06T08:40:33.244159-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `double-spending'
+2023-02-06T08:40:33.244362-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-2
+2023-02-06T08:40:33.251874-0500 
taler-merchant-httpd-17112(6XN1GY2H8AQ8DY9BG929SSYGSG) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:33.266677-0500 
taler-merchant-httpd-17112(6XN1GY2H8AQ8DY9BG929SSYGSG) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:40:33.270504-0500 
taler-merchant-httpd-17112(6XN1GY2H8AQ8DY9BG929SSYGSG) INFO Notifying clients 
of new order 7 at GRJQ5BC0
+2023-02-06T08:40:33.270874-0500 
taler-merchant-httpd-17112(6XN1GY2H8AQ8DY9BG929SSYGSG) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000E005YG42SPNP80000000''
+2023-02-06T08:40:33.271476-0500 
taler-merchant-httpd-17112(6XN1GY2H8AQ8DY9BG929SSYGSG) INFO PG poll job active
+2023-02-06T08:40:33.271807-0500 
taler-merchant-httpd-17112(6XN1GY2H8AQ8DY9BG929SSYGSG) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:33.272060-0500 
taler-merchant-httpd-17112(6XN1GY2H8AQ8DY9BG929SSYGSG) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T08:40:33.284206-0500 
taler-merchant-httpd-17112(6XN1GY2H8AQ8DY9BG929SSYGSG) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:33.285296-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/2/claim
+2023-02-06T08:40:33.290190-0500 
taler-merchant-httpd-17112(XXD76ES44NDKGB50074C24ZVJ0) INFO Handling request 
(POST) for URL '/orders/2/claim'
+2023-02-06T08:40:33.291208-0500 
taler-merchant-httpd-17112(XXD76ES44NDKGB50074C24ZVJ0) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:33.307649-0500 
taler-merchant-httpd-17112(XXD76ES44NDKGB50074C24ZVJ0) INFO Notifying clients 
of new order 7 at GRJQ5BC0
+2023-02-06T08:40:33.307969-0500 
taler-merchant-httpd-17112(XXD76ES44NDKGB50074C24ZVJ0) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000E005YG42SPNP80000001''
+2023-02-06T08:40:33.308544-0500 
taler-merchant-httpd-17112(XXD76ES44NDKGB50074C24ZVJ0) INFO PG poll job active
+2023-02-06T08:40:33.308812-0500 
taler-merchant-httpd-17112(XXD76ES44NDKGB50074C24ZVJ0) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:33.309033-0500 
taler-merchant-httpd-17112(XXD76ES44NDKGB50074C24ZVJ0) INFO Committing merchant 
DB transaction claim order
+2023-02-06T08:40:33.338729-0500 
taler-merchant-httpd-17112(XXD76ES44NDKGB50074C24ZVJ0) INFO Finished handling 
request for `/orders/2/claim' with MHD termination code 0
+2023-02-06T08:40:33.343477-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:40:33.354910-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `double-spending'
+2023-02-06T08:40:33.355093-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: fetch-proposal-2
+2023-02-06T08:40:33.355422-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/2/claim
+2023-02-06T08:40:33.359111-0500 
taler-merchant-httpd-17112(ERF6NV9JJDR4TP28E4RJW8QP7C) INFO Handling request 
(POST) for URL '/orders/2/claim'
+2023-02-06T08:40:33.359982-0500 
taler-merchant-httpd-17112(ERF6NV9JJDR4TP28E4RJW8QP7C) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:33.363506-0500 
taler-merchant-httpd-17112(ERF6NV9JJDR4TP28E4RJW8QP7C) INFO Rolling back 
merchant DB transaction `claim order'
+2023-02-06T08:40:33.381189-0500 
taler-merchant-httpd-17112(ERF6NV9JJDR4TP28E4RJW8QP7C) INFO Finished handling 
request for `/orders/2/claim' with MHD termination code 0
+2023-02-06T08:40:33.385995-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:40:33.397682-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `double-spending'
+2023-02-06T08:40:33.397905-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: deposit-double-2
+2023-02-06T08:40:33.411763-0500 
taler-merchant-httpd-17112(RD9641MWPT0TZ4G0KWMCR7HAA8) INFO Handling request 
(POST) for URL '/orders/2/pay'
+2023-02-06T08:40:33.426995-0500 
taler-merchant-httpd-17112(RD9641MWPT0TZ4G0KWMCR7HAA8) INFO Handling payment 
for order `2' with contract hash `00NGT5FC'
+2023-02-06T08:40:33.427531-0500 
taler-merchant-httpd-17112(RD9641MWPT0TZ4G0KWMCR7HAA8) INFO Starting merchant 
DB transaction `run pay'
+2023-02-06T08:40:33.429634-0500 
taler-merchant-httpd-17112(RD9641MWPT0TZ4G0KWMCR7HAA8) INFO Rolling back 
merchant DB transaction `run pay'
+2023-02-06T08:40:33.430238-0500 
taler-merchant-httpd-17112(RD9641MWPT0TZ4G0KWMCR7HAA8) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:33.430772-0500 
taler-merchant-httpd-17112(RD9641MWPT0TZ4G0KWMCR7HAA8) INFO Processing payment 
with exchange http://localhost:8081/
+2023-02-06T08:40:33.431135-0500 
taler-merchant-httpd-17112(RD9641MWPT0TZ4G0KWMCR7HAA8) INFO Initiating batch 
deposit with 1 coins
+2023-02-06T08:40:33.464085-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:33.465829-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:33.466136-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:33.466419-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:33.500809-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Starting 
transaction `execute batch deposit'
+2023-02-06T08:40:33.510039-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Starting READ ONLY 
transaction `get_coin_transactions`
+2023-02-06T08:40:33.530727-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Coin 5M342MM1 
yielded 1 transactions of type get_deposit_with_coin_pub
+2023-02-06T08:40:33.533359-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Coin 5M342MM1 
yielded 0 transactions of type get_refresh_session_by_coin
+2023-02-06T08:40:33.537166-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Coin 5M342MM1 
yielded 0 transactions of type get_purse_deposit_by_coin_pub
+2023-02-06T08:40:33.539124-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Coin 5M342MM1 
yielded 0 transactions of type get_purse_decision_by_coin_pub
+2023-02-06T08:40:33.541406-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Coin 5M342MM1 
yielded 0 transactions of type get_refunds_by_coin
+2023-02-06T08:40:33.544330-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Coin 5M342MM1 
yielded 0 transactions of type recoup_by_old_coin
+2023-02-06T08:40:33.546813-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Coin 5M342MM1 
yielded 0 transactions of type recoup_by_coin
+2023-02-06T08:40:33.549128-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Coin 5M342MM1 
yielded 0 transactions of type recoup_by_refreshed_coin
+2023-02-06T08:40:33.551028-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Coin 5M342MM1 
yielded 0 transactions of type reserve_open_by_coin
+2023-02-06T08:40:33.576212-0500 
taler-exchange-httpd-17126(S1ZYEZMSD9J7563ZHCNV4H31QR) INFO Request for 
`/batch-deposit' completed (0)
+2023-02-06T08:40:33.587238-0500 
taler-merchant-httpd-17112(RD9641MWPT0TZ4G0KWMCR7HAA8) INFO Operation of type 
DEPOSIT with amount EUR:5
+2023-02-06T08:40:33.600692-0500 
taler-merchant-httpd-17112(RD9641MWPT0TZ4G0KWMCR7HAA8) INFO Batch deposit 
completed with status 409
+2023-02-06T08:40:33.601417-0500 
taler-merchant-httpd-17112(RD9641MWPT0TZ4G0KWMCR7HAA8) WARNING Deposit 
operation failed with HTTP code 409/1012
+2023-02-06T08:40:33.606499-0500 
taler-merchant-httpd-17112(RD9641MWPT0TZ4G0KWMCR7HAA8) INFO Finished handling 
request for `/orders/2/pay' with MHD termination code 0
+2023-02-06T08:40:33.610477-0500 .libs/test_merchant_api_cs-16942 INFO /pay 
completed with response code 409
+2023-02-06T08:40:33.616139-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:33.617697-0500 
taler-exchange-httpd-17126(M3BQRVAQC0XRTZVWJAPWKVSY6M) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:40:33.618824-0500 
taler-exchange-httpd-17126(M3BQRVAQC0XRTZVWJAPWKVSY6M) INFO Filtering /keys by 
cherry pick date Wed Dec 31 19:00:00 1969 found entry 4292010656/53
+2023-02-06T08:40:33.619539-0500 
taler-exchange-httpd-17126(M3BQRVAQC0XRTZVWJAPWKVSY6M) INFO Request for `/keys' 
completed (0)
+2023-02-06T08:40:33.950321-0500 .libs/test_merchant_api_cs-16942 INFO Received 
keys from URL `http://localhost:8081/keys' with status 200 and expiration Mon 
Feb 13 13:39:59 2023.
+2023-02-06T08:40:34.308681-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:34.330872-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:34.841692-0500 .libs/test_merchant_api_cs-16942 INFO 
Successfully downloaded exchange's keys
+2023-02-06T08:40:34.841971-0500 .libs/test_merchant_api_cs-16942 INFO 
Connecting to auditor at URL `http://the.auditor/'.
+2023-02-06T08:40:34.844911-0500 .libs/test_merchant_api_cs-16942 INFO 
Operation of type DEPOSIT with amount EUR:5
+2023-02-06T08:40:34.855579-0500 .libs/test_merchant_api_cs-16942 INFO 
Accepting proof of double-spending (or coin public key re-use)
+2023-02-06T08:40:34.857452-0500 .libs/test_merchant_api_cs-16942 INFO 
Disconnecting from auditor at URL `http://the.auditor/'.
+2023-02-06T08:40:34.893117-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `double-spending'
+2023-02-06T08:40:34.893291-0500 .libs/test_merchant_api_cs-16942 INFO Exiting 
from batch: double-spending
+2023-02-06T08:40:34.893466-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:34.893727-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:34.893847-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-reserve-20
+2023-02-06T08:40:34.895641-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting administrative transaction at 
`http://localhost:8082/2/admin/add-incoming' for reserve FKCV2ACQ
+2023-02-06T08:40:34.899289-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:34.899559-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:34.899824-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:34.900048-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:34.900276-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:34.900499-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:34.901649-0500 .libs/test_merchant_api_cs-16942 INFO 
Receiving incoming wire transfer: 62->2, subject: FKCV2ACQ, amount: EUR:20.04
+2023-02-06T08:40:34.903063-0500 .libs/test_merchant_api_cs-16942 INFO Making 
transfer from 62 to 2 over EUR:20.04 and subject FKCV2ACQ at row 3
+2023-02-06T08:40:34.904893-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:34.905024-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: wirewatch-20
+2023-02-06T08:40:34.920071-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+==17289== Memcheck, a memory error detector
+==17289== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17289== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17289== Command: /home/priscilla/install/bin/taler-exchange-wirewatch -c 
test_merchant_api-cs.conf -S 1 -w 0 -t -L DEBUG
+==17289== 
+2023-02-06T08:40:36.333569-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:36.356692-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:36.417253-0500 taler-exchange-wirewatch-17289 INFO Change in 
PQ event FD to -1
+2023-02-06T08:40:36.463004-0500 taler-exchange-wirewatch-17289 INFO New poll 
FD is -1
+2023-02-06T08:40:36.599209-0500 taler-exchange-wirewatch-17289 INFO Change in 
PQ event FD to 8
+2023-02-06T08:40:36.599462-0500 taler-exchange-wirewatch-17289 INFO New poll 
FD is 8
+2023-02-06T08:40:36.622652-0500 taler-exchange-wirewatch-17289 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:40:36.625222-0500 taler-exchange-wirewatch-17289 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:36.684146-0500 taler-exchange-wirewatch-17289 INFO Claimed 
new shard
+2023-02-06T08:40:36.685794-0500 taler-exchange-wirewatch-17289 INFO Starting 
with shard wirewatch-exchange-account-exchange at (1,2] locked for 0 ms
+2023-02-06T08:40:36.686657-0500 taler-exchange-wirewatch-17289 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:40:36.688020-0500 taler-exchange-wirewatch-17289 INFO Requesting 
credit history staring from 1
+2023-02-06T08:40:36.694087-0500 taler-exchange-wirewatch-17289 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=1'
+2023-02-06T08:40:36.922492-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:36.945114-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:37.045725-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:40:37.045937-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:40:37.046116-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x5d09ae0 (0)
+2023-02-06T08:40:37.046334-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 1
+2023-02-06T08:40:37.046715-0500 .libs/test_merchant_api_cs-16942 INFO 
Returning 1 credit transactions starting (inclusive) from 3
+2023-02-06T08:40:37.156346-0500 taler-exchange-wirewatch-17289 INFO History 
request returned with HTTP status 200
+2023-02-06T08:40:37.159094-0500 taler-exchange-wirewatch-17289 INFO Serial ID 
3 past shard end at 2, ending iteration early!
+2023-02-06T08:40:37.160180-0500 taler-exchange-wirewatch-17289 INFO Starting 
READ COMMITTED transaction `wirewatch check for incoming wire transfers`
+2023-02-06T08:40:37.161544-0500 taler-exchange-wirewatch-17289 INFO Importing 
0 transactions
+2023-02-06T08:40:37.162549-0500 taler-exchange-wirewatch-17289 INFO Completing 
shard 1-2
+2023-02-06T08:40:37.166134-0500 taler-exchange-wirewatch-17289 INFO Completed 
shard wirewatch-exchange-account-exchange (1,2] after 541 ms
+2023-02-06T08:40:37.166777-0500 taler-exchange-wirewatch-17289 INFO Committing 
wirewatch-exchange-account-exchange progress (1,2] at 2
+ (shard done)2023-02-06T08:40:37.172292-0500 taler-exchange-wirewatch-17289 
INFO Increasing batch size to 2
+2023-02-06T08:40:37.172771-0500 taler-exchange-wirewatch-17289 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:40:37.189322-0500 taler-exchange-wirewatch-17289 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:37.193575-0500 taler-exchange-wirewatch-17289 INFO Trying to 
claim shard (2-3]
+2023-02-06T08:40:37.204526-0500 taler-exchange-wirewatch-17289 INFO Claimed 
new shard
+2023-02-06T08:40:37.204786-0500 taler-exchange-wirewatch-17289 INFO Starting 
with shard wirewatch-exchange-account-exchange at (2,3] locked for 0 ms
+2023-02-06T08:40:37.205028-0500 taler-exchange-wirewatch-17289 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:40:37.206651-0500 taler-exchange-wirewatch-17289 INFO Requesting 
credit history staring from 2
+2023-02-06T08:40:37.206939-0500 taler-exchange-wirewatch-17289 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=2'
+2023-02-06T08:40:37.211333-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:40:37.211530-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:40:37.211684-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x926a530 (0)
+2023-02-06T08:40:37.211873-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 2
+2023-02-06T08:40:37.212486-0500 .libs/test_merchant_api_cs-16942 INFO 
Returning 1 credit transactions starting (inclusive) from 3
+2023-02-06T08:40:37.216904-0500 taler-exchange-wirewatch-17289 INFO History 
request returned with HTTP status 200
+2023-02-06T08:40:37.217346-0500 taler-exchange-wirewatch-17289 INFO Starting 
READ COMMITTED transaction `wirewatch check for incoming wire transfers`
+2023-02-06T08:40:37.217938-0500 taler-exchange-wirewatch-17289 INFO Importing 
1 transactions
+2023-02-06T08:40:37.296046-0500 taler-exchange-wirewatch-17289 INFO Notifying 
on reserve!
+2023-02-06T08:40:37.299031-0500 taler-exchange-wirewatch-17289 INFO Executing 
command `NOTIFY X25HGGW38KZEFDXYF5FZE2M6B55ZS168K3FNVGV19VQ0YTWB63SSG, '''
+2023-02-06T08:40:37.300362-0500 taler-exchange-wirewatch-17289 INFO PG poll 
job active
+2023-02-06T08:40:37.301963-0500 taler-exchange-wirewatch-17289 INFO PG poll 
job finishes after 0 events
+2023-02-06T08:40:37.303173-0500 taler-exchange-wirewatch-17289 INFO Imported 
transaction 3.2023-02-06T08:40:37.303464-0500 taler-exchange-wirewatch-17289 
INFO Completing shard 2-3
+2023-02-06T08:40:37.304403-0500 taler-exchange-wirewatch-17289 INFO Completed 
shard wirewatch-exchange-account-exchange (2,3] after 115 ms
+2023-02-06T08:40:37.304619-0500 taler-exchange-wirewatch-17289 INFO Committing 
wirewatch-exchange-account-exchange progress (2,3] at 3
+ (shard done)2023-02-06T08:40:37.315772-0500 taler-exchange-wirewatch-17289 
INFO Will try to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:40:37.316464-0500 taler-exchange-wirewatch-17289 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:37.318390-0500 taler-exchange-wirewatch-17289 INFO Trying to 
claim shard (3-4]
+2023-02-06T08:40:37.326696-0500 taler-exchange-wirewatch-17289 INFO Claimed 
new shard
+2023-02-06T08:40:37.326914-0500 taler-exchange-wirewatch-17289 INFO Starting 
with shard wirewatch-exchange-account-exchange at (3,4] locked for 0 ms
+2023-02-06T08:40:37.327133-0500 taler-exchange-wirewatch-17289 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:40:37.327412-0500 taler-exchange-wirewatch-17289 INFO Requesting 
credit history staring from 3
+2023-02-06T08:40:37.327651-0500 taler-exchange-wirewatch-17289 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=3'
+2023-02-06T08:40:37.329149-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:40:37.329412-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:40:37.329634-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x9315db0 (0)
+2023-02-06T08:40:37.329903-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 3
+2023-02-06T08:40:37.332359-0500 taler-exchange-wirewatch-17289 INFO History 
request returned with HTTP status 204
+2023-02-06T08:40:37.333264-0500 taler-exchange-wirewatch-17289 INFO 
Transaction list drained and in test mode. Exiting
+==17289== 
+==17289== HEAP SUMMARY:
+==17289==     in use at exit: 5,293 bytes in 26 blocks
+==17289==   total heap usage: 3,994 allocs, 3,968 frees, 517,202 bytes 
allocated
+==17289== 
+==17289== LEAK SUMMARY:
+==17289==    definitely lost: 0 bytes in 0 blocks
+==17289==    indirectly lost: 0 bytes in 0 blocks
+==17289==      possibly lost: 0 bytes in 0 blocks
+==17289==    still reachable: 5,293 bytes in 26 blocks
+==17289==         suppressed: 0 bytes in 0 blocks
+==17289== Rerun with --leak-check=full to see details of leaked memory
+==17289== 
+==17289== For lists of detected and suppressed errors, rerun with: -s
+==17289== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:40:37.479750-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:37.480012-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check_bank_transfer-10
+2023-02-06T08:40:37.480475-0500 .libs/test_merchant_api_cs-16942 INFO 
converted debit_payto (payto://x-taler-bank/localhost/62?receiver-name=62) to 
debit_account (62)
+2023-02-06T08:40:37.480947-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:37.481154-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-coin-10a
+2023-02-06T08:40:37.490563-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:37.492298-0500 
taler-exchange-httpd-17126(PMZWY3FVNSN5CCDPQPC2WV15K8) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:37.492604-0500 
taler-exchange-httpd-17126(PMZWY3FVNSN5CCDPQPC2WV15K8) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:37.492876-0500 
taler-exchange-httpd-17126(PMZWY3FVNSN5CCDPQPC2WV15K8) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:37.495824-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:40:37.501790-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:40:37.502048-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:40:37.502329-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 6 ms
+2023-02-06T08:40:37.504587-0500 
taler-exchange-httpd-17126(PMZWY3FVNSN5CCDPQPC2WV15K8) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:40:37.552161-0500 .libs/test_merchant_api_cs-16942 INFO 
Attempting to withdraw from reserve FKCV2ACQ
+2023-02-06T08:40:37.556420-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:37.558702-0500 
taler-exchange-httpd-17126(JYXHJ60Q7XEN3522CGW24JPMG0) INFO Handling request 
(POST) for URL 
'/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw'
+2023-02-06T08:40:37.559038-0500 
taler-exchange-httpd-17126(JYXHJ60Q7XEN3522CGW24JPMG0) INFO Handling request 
(POST) for URL 
'/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw'
+2023-02-06T08:40:37.559354-0500 
taler-exchange-httpd-17126(JYXHJ60Q7XEN3522CGW24JPMG0) INFO Handling request 
(POST) for URL 
'/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw'
+2023-02-06T08:40:37.569435-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:40:37.571575-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:40:37.571830-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:40:37.572113-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2694 µs
+2023-02-06T08:40:37.572574-0500 
taler-exchange-httpd-17126(JYXHJ60Q7XEN3522CGW24JPMG0) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:40:37.573905-0500 
taler-exchange-httpd-17126(JYXHJ60Q7XEN3522CGW24JPMG0) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:40:37.574180-0500 
taler-exchange-httpd-17126(JYXHJ60Q7XEN3522CGW24JPMG0) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:40:37.574452-0500 
taler-exchange-httpd-17126(JYXHJ60Q7XEN3522CGW24JPMG0) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:40:37.584278-0500 
taler-exchange-httpd-17126(JYXHJ60Q7XEN3522CGW24JPMG0) INFO Request for 
`/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw' 
completed (0)
+2023-02-06T08:40:37.629666-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:37.629911-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-coin-10b
+2023-02-06T08:40:37.637469-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:37.639192-0500 
taler-exchange-httpd-17126(31TBVFK66W41J9CBYH2ZNEJZHG) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:37.639499-0500 
taler-exchange-httpd-17126(31TBVFK66W41J9CBYH2ZNEJZHG) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:37.639772-0500 
taler-exchange-httpd-17126(31TBVFK66W41J9CBYH2ZNEJZHG) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:37.642632-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:40:37.648547-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:40:37.648804-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:40:37.649103-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 6 ms
+2023-02-06T08:40:37.651234-0500 
taler-exchange-httpd-17126(31TBVFK66W41J9CBYH2ZNEJZHG) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:40:37.693064-0500 .libs/test_merchant_api_cs-16942 INFO 
Attempting to withdraw from reserve FKCV2ACQ
+2023-02-06T08:40:37.696615-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:37.698815-0500 
taler-exchange-httpd-17126(9VAZHEQ88VK5CZTQQDBXTF47K8) INFO Handling request 
(POST) for URL 
'/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw'
+2023-02-06T08:40:37.699151-0500 
taler-exchange-httpd-17126(9VAZHEQ88VK5CZTQQDBXTF47K8) INFO Handling request 
(POST) for URL 
'/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw'
+2023-02-06T08:40:37.699449-0500 
taler-exchange-httpd-17126(9VAZHEQ88VK5CZTQQDBXTF47K8) INFO Handling request 
(POST) for URL 
'/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw'
+2023-02-06T08:40:37.709395-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:40:37.711535-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:40:37.711791-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:40:37.712074-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2692 µs
+2023-02-06T08:40:37.712528-0500 
taler-exchange-httpd-17126(9VAZHEQ88VK5CZTQQDBXTF47K8) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:40:37.713772-0500 
taler-exchange-httpd-17126(9VAZHEQ88VK5CZTQQDBXTF47K8) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:40:37.714060-0500 
taler-exchange-httpd-17126(9VAZHEQ88VK5CZTQQDBXTF47K8) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:40:37.714332-0500 
taler-exchange-httpd-17126(9VAZHEQ88VK5CZTQQDBXTF47K8) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:40:37.739814-0500 
taler-exchange-httpd-17126(9VAZHEQ88VK5CZTQQDBXTF47K8) INFO Request for 
`/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw' 
completed (0)
+2023-02-06T08:40:37.777714-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:37.777901-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-coin-10c
+2023-02-06T08:40:37.784215-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:37.785921-0500 
taler-exchange-httpd-17126(F7Y5EW0GQPPV3GSKK3WEF2YY9C) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:37.786226-0500 
taler-exchange-httpd-17126(F7Y5EW0GQPPV3GSKK3WEF2YY9C) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:37.786523-0500 
taler-exchange-httpd-17126(F7Y5EW0GQPPV3GSKK3WEF2YY9C) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:37.789390-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:40:37.795420-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:40:37.795679-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:40:37.795961-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 6 ms
+2023-02-06T08:40:37.798002-0500 
taler-exchange-httpd-17126(F7Y5EW0GQPPV3GSKK3WEF2YY9C) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:40:37.834832-0500 .libs/test_merchant_api_cs-16942 INFO 
Attempting to withdraw from reserve FKCV2ACQ
+2023-02-06T08:40:37.838541-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:37.840267-0500 
taler-exchange-httpd-17126(XC5KPQGNMP439HTX4FS27QD2Q8) INFO Handling request 
(POST) for URL 
'/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw'
+2023-02-06T08:40:37.840600-0500 
taler-exchange-httpd-17126(XC5KPQGNMP439HTX4FS27QD2Q8) INFO Handling request 
(POST) for URL 
'/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw'
+2023-02-06T08:40:37.840898-0500 
taler-exchange-httpd-17126(XC5KPQGNMP439HTX4FS27QD2Q8) INFO Handling request 
(POST) for URL 
'/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw'
+2023-02-06T08:40:37.850770-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:40:37.852884-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:40:37.853137-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:40:37.853419-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2665 µs
+2023-02-06T08:40:37.853876-0500 
taler-exchange-httpd-17126(XC5KPQGNMP439HTX4FS27QD2Q8) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:40:37.855221-0500 
taler-exchange-httpd-17126(XC5KPQGNMP439HTX4FS27QD2Q8) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:40:37.855499-0500 
taler-exchange-httpd-17126(XC5KPQGNMP439HTX4FS27QD2Q8) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:40:37.855770-0500 
taler-exchange-httpd-17126(XC5KPQGNMP439HTX4FS27QD2Q8) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:40:37.884247-0500 
taler-exchange-httpd-17126(XC5KPQGNMP439HTX4FS27QD2Q8) INFO Request for 
`/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw' 
completed (0)
+2023-02-06T08:40:37.921440-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:37.921632-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-coin-10d
+2023-02-06T08:40:37.927737-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:37.928987-0500 
taler-exchange-httpd-17126(VHQGAP47ENZJVEWTWMH6R1E934) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:37.929292-0500 
taler-exchange-httpd-17126(VHQGAP47ENZJVEWTWMH6R1E934) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:37.929582-0500 
taler-exchange-httpd-17126(VHQGAP47ENZJVEWTWMH6R1E934) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:37.932464-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:40:37.937883-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:40:37.938140-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:40:37.938420-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 5 ms
+2023-02-06T08:40:37.940485-0500 
taler-exchange-httpd-17126(VHQGAP47ENZJVEWTWMH6R1E934) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:40:37.979348-0500 .libs/test_merchant_api_cs-16942 INFO 
Attempting to withdraw from reserve FKCV2ACQ
+2023-02-06T08:40:37.982859-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:37.984148-0500 
taler-exchange-httpd-17126(TW5ZHQ3HAC8342ANN2ATEPX1N4) INFO Handling request 
(POST) for URL 
'/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw'
+2023-02-06T08:40:37.984482-0500 
taler-exchange-httpd-17126(TW5ZHQ3HAC8342ANN2ATEPX1N4) INFO Handling request 
(POST) for URL 
'/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw'
+2023-02-06T08:40:37.984780-0500 
taler-exchange-httpd-17126(TW5ZHQ3HAC8342ANN2ATEPX1N4) INFO Handling request 
(POST) for URL 
'/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw'
+2023-02-06T08:40:37.995109-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:40:37.997299-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:40:37.997553-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:40:37.997836-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2744 µs
+2023-02-06T08:40:37.998293-0500 
taler-exchange-httpd-17126(TW5ZHQ3HAC8342ANN2ATEPX1N4) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:40:37.999637-0500 
taler-exchange-httpd-17126(TW5ZHQ3HAC8342ANN2ATEPX1N4) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:40:37.999912-0500 
taler-exchange-httpd-17126(TW5ZHQ3HAC8342ANN2ATEPX1N4) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:40:38.000184-0500 
taler-exchange-httpd-17126(TW5ZHQ3HAC8342ANN2ATEPX1N4) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:40:38.006385-0500 
taler-exchange-httpd-17126(TW5ZHQ3HAC8342ANN2ATEPX1N4) INFO Request for 
`/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG/withdraw' 
completed (0)
+2023-02-06T08:40:38.040025-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:38.040207-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-status-20
+2023-02-06T08:40:38.041811-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:38.043509-0500 
taler-exchange-httpd-17126(JSR5ZSXXQB64XRSDK9KRWP154C) INFO Handling request 
(GET) for URL '/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG'
+2023-02-06T08:40:38.043974-0500 
taler-exchange-httpd-17126(JSR5ZSXXQB64XRSDK9KRWP154C) INFO Starting 
transaction `get reserve balance'
+2023-02-06T08:40:38.047179-0500 
taler-exchange-httpd-17126(JSR5ZSXXQB64XRSDK9KRWP154C) INFO Request for 
`/reserves/12DCD0KJD38V2QSNRJHHAG7R1KEPNHGGVTG2N3HWXRED7WXDPYEG' completed (0)
+2023-02-06T08:40:38.047877-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:38.048032-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-10
+2023-02-06T08:40:38.053738-0500 
taler-merchant-httpd-17112(9TZ722NM50RDGAS3Y1B044CZH0) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:38.071151-0500 
taler-merchant-httpd-17112(9TZ722NM50RDGAS3Y1B044CZH0) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:40:38.074655-0500 
taler-merchant-httpd-17112(9TZ722NM50RDGAS3Y1B044CZH0) INFO Notifying clients 
of new order 8 at GRJQ5BC0
+2023-02-06T08:40:38.075044-0500 
taler-merchant-httpd-17112(9TZ722NM50RDGAS3Y1B044CZH0) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000G005YG42T9R1G0000000''
+2023-02-06T08:40:38.075654-0500 
taler-merchant-httpd-17112(9TZ722NM50RDGAS3Y1B044CZH0) INFO PG poll job active
+2023-02-06T08:40:38.075986-0500 
taler-merchant-httpd-17112(9TZ722NM50RDGAS3Y1B044CZH0) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:38.076238-0500 
taler-merchant-httpd-17112(9TZ722NM50RDGAS3Y1B044CZH0) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T08:40:38.084534-0500 
taler-merchant-httpd-17112(9TZ722NM50RDGAS3Y1B044CZH0) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:38.085479-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/10/claim
+2023-02-06T08:40:38.089500-0500 
taler-merchant-httpd-17112(2D9ZZZYGPC6JZCWHP8CHK6JABC) INFO Handling request 
(POST) for URL '/orders/10/claim'
+2023-02-06T08:40:38.090542-0500 
taler-merchant-httpd-17112(2D9ZZZYGPC6JZCWHP8CHK6JABC) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:38.108797-0500 
taler-merchant-httpd-17112(2D9ZZZYGPC6JZCWHP8CHK6JABC) INFO Notifying clients 
of new order 8 at GRJQ5BC0
+2023-02-06T08:40:38.109175-0500 
taler-merchant-httpd-17112(2D9ZZZYGPC6JZCWHP8CHK6JABC) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000G005YG42T9R1G0000001''
+2023-02-06T08:40:38.109736-0500 
taler-merchant-httpd-17112(2D9ZZZYGPC6JZCWHP8CHK6JABC) INFO PG poll job active
+2023-02-06T08:40:38.110056-0500 
taler-merchant-httpd-17112(2D9ZZZYGPC6JZCWHP8CHK6JABC) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:38.110306-0500 
taler-merchant-httpd-17112(2D9ZZZYGPC6JZCWHP8CHK6JABC) INFO Committing merchant 
DB transaction claim order
+2023-02-06T08:40:38.137120-0500 
taler-merchant-httpd-17112(2D9ZZZYGPC6JZCWHP8CHK6JABC) INFO Finished handling 
request for `/orders/10/claim' with MHD termination code 0
+2023-02-06T08:40:38.141591-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:40:38.151391-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:38.151561-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pay-fail-partial-double-10
+2023-02-06T08:40:38.171699-0500 
taler-merchant-httpd-17112(0C5WPSJYGGDVJYWN809KSWQEX4) INFO Handling request 
(POST) for URL '/orders/10/pay'
+2023-02-06T08:40:38.189226-0500 
taler-merchant-httpd-17112(0C5WPSJYGGDVJYWN809KSWQEX4) INFO Handling payment 
for order `10' with contract hash `8VHQ7121'
+2023-02-06T08:40:38.190062-0500 
taler-merchant-httpd-17112(0C5WPSJYGGDVJYWN809KSWQEX4) INFO Starting merchant 
DB transaction `run pay'
+2023-02-06T08:40:38.192128-0500 
taler-merchant-httpd-17112(0C5WPSJYGGDVJYWN809KSWQEX4) INFO Rolling back 
merchant DB transaction `run pay'
+2023-02-06T08:40:38.192728-0500 
taler-merchant-httpd-17112(0C5WPSJYGGDVJYWN809KSWQEX4) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:38.193128-0500 
taler-merchant-httpd-17112(0C5WPSJYGGDVJYWN809KSWQEX4) INFO Processing payment 
with exchange http://localhost:8081/
+2023-02-06T08:40:38.193692-0500 
taler-merchant-httpd-17112(0C5WPSJYGGDVJYWN809KSWQEX4) INFO Initiating batch 
deposit with 2 coins
+2023-02-06T08:40:38.237139-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:38.238286-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:38.238499-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:38.238673-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:38.270836-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Starting 
transaction `execute batch deposit'
+2023-02-06T08:40:38.279255-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Starting READ ONLY 
transaction `get_coin_transactions`
+2023-02-06T08:40:38.283173-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Coin 5M342MM1 
yielded 1 transactions of type get_deposit_with_coin_pub
+2023-02-06T08:40:38.284269-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Coin 5M342MM1 
yielded 0 transactions of type get_refresh_session_by_coin
+2023-02-06T08:40:38.286225-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Coin 5M342MM1 
yielded 0 transactions of type get_purse_deposit_by_coin_pub
+2023-02-06T08:40:38.287433-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Coin 5M342MM1 
yielded 0 transactions of type get_purse_decision_by_coin_pub
+2023-02-06T08:40:38.288749-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Coin 5M342MM1 
yielded 0 transactions of type get_refunds_by_coin
+2023-02-06T08:40:38.290268-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Coin 5M342MM1 
yielded 0 transactions of type recoup_by_old_coin
+2023-02-06T08:40:38.291698-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Coin 5M342MM1 
yielded 0 transactions of type recoup_by_coin
+2023-02-06T08:40:38.293400-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Coin 5M342MM1 
yielded 0 transactions of type recoup_by_refreshed_coin
+2023-02-06T08:40:38.294204-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Coin 5M342MM1 
yielded 0 transactions of type reserve_open_by_coin
+2023-02-06T08:40:38.305244-0500 
taler-exchange-httpd-17126(4MRVFM40HS8X4GGPMGXTMZE1FW) INFO Request for 
`/batch-deposit' completed (0)
+2023-02-06T08:40:38.308100-0500 
taler-merchant-httpd-17112(0C5WPSJYGGDVJYWN809KSWQEX4) INFO Operation of type 
DEPOSIT with amount EUR:5
+2023-02-06T08:40:38.312691-0500 
taler-merchant-httpd-17112(0C5WPSJYGGDVJYWN809KSWQEX4) INFO Batch deposit 
completed with status 409
+2023-02-06T08:40:38.312949-0500 
taler-merchant-httpd-17112(0C5WPSJYGGDVJYWN809KSWQEX4) WARNING Deposit 
operation failed with HTTP code 409/1012
+2023-02-06T08:40:38.315281-0500 
taler-merchant-httpd-17112(0C5WPSJYGGDVJYWN809KSWQEX4) INFO Finished handling 
request for `/orders/10/pay' with MHD termination code 0
+2023-02-06T08:40:38.318059-0500 .libs/test_merchant_api_cs-16942 INFO /pay 
completed with response code 409
+2023-02-06T08:40:38.320291-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:38.322121-0500 
taler-exchange-httpd-17126(RSW3W6WAZP7MS01NA4Z3T7H7JW) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:40:38.323502-0500 
taler-exchange-httpd-17126(RSW3W6WAZP7MS01NA4Z3T7H7JW) INFO Filtering /keys by 
cherry pick date Wed Dec 31 19:00:00 1969 found entry 4292010656/53
+2023-02-06T08:40:38.324446-0500 
taler-exchange-httpd-17126(RSW3W6WAZP7MS01NA4Z3T7H7JW) INFO Request for `/keys' 
completed (0)
+2023-02-06T08:40:38.357197-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:38.382382-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:38.640557-0500 .libs/test_merchant_api_cs-16942 INFO Received 
keys from URL `http://localhost:8081/keys' with status 200 and expiration Mon 
Feb 13 13:39:59 2023.
+2023-02-06T08:40:39.236292-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://192.0.2.1/404/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:40:39.236505-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:40:39.236666-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://192.0.2.1/404/
+2023-02-06T08:40:39.548814-0500 .libs/test_merchant_api_cs-16942 INFO 
Successfully downloaded exchange's keys
+2023-02-06T08:40:39.549047-0500 .libs/test_merchant_api_cs-16942 INFO 
Connecting to auditor at URL `http://the.auditor/'.
+2023-02-06T08:40:39.549457-0500 .libs/test_merchant_api_cs-16942 INFO 
Operation of type DEPOSIT with amount EUR:5
+2023-02-06T08:40:39.553228-0500 .libs/test_merchant_api_cs-16942 INFO 
Accepting proof of double-spending (or coin public key re-use)
+2023-02-06T08:40:39.553438-0500 .libs/test_merchant_api_cs-16942 INFO 
Disconnecting from auditor at URL `http://the.auditor/'.
+2023-02-06T08:40:39.585565-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:39.585727-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pay-again-10
+2023-02-06T08:40:39.597180-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:39.599562-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Handling request 
(POST) for URL '/orders/10/pay'
+2023-02-06T08:40:39.617130-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Handling payment 
for order `10' with contract hash `8VHQ7121'
+2023-02-06T08:40:39.617703-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Starting merchant 
DB transaction `run pay'
+2023-02-06T08:40:39.619624-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Rolling back 
merchant DB transaction `run pay'
+2023-02-06T08:40:39.620200-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:39.620681-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Processing payment 
with exchange http://localhost:8081/
+2023-02-06T08:40:39.620910-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Initiating batch 
deposit with 2 coins
+2023-02-06T08:40:39.621679-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:39.670760-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:39.671767-0500 
taler-exchange-httpd-17126(S1QZJZ9DWCPBNEQWZ2AAFZFFB8) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:39.671945-0500 
taler-exchange-httpd-17126(S1QZJZ9DWCPBNEQWZ2AAFZFFB8) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:39.672110-0500 
taler-exchange-httpd-17126(S1QZJZ9DWCPBNEQWZ2AAFZFFB8) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:39.700171-0500 
taler-exchange-httpd-17126(S1QZJZ9DWCPBNEQWZ2AAFZFFB8) INFO Starting 
transaction `execute batch deposit'
+2023-02-06T08:40:39.721596-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:40:39.721894-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:40:39.728831-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:40:39.729096-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:40:39.732845-0500 
taler-exchange-httpd-17126(S1QZJZ9DWCPBNEQWZ2AAFZFFB8) INFO Request for 
`/batch-deposit' completed (0)
+2023-02-06T08:40:39.744538-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Batch deposit 
completed with status 200
+2023-02-06T08:40:39.744866-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Starting merchant 
DB transaction `batch-deposit-insert-confirmation'
+2023-02-06T08:40:39.748499-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Committing merchant 
DB transaction batch-deposit-insert-confirmation
+2023-02-06T08:40:39.765938-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Not re-checking KYC 
status at `http://localhost:8081/', as we already recently asked
+2023-02-06T08:40:39.766571-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Starting merchant 
DB transaction `run pay'
+2023-02-06T08:40:39.771275-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Subtracting total 
refunds from paid amount: EUR:0
+2023-02-06T08:40:39.771675-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Order `10' 
(8VHQ7121) was fully paid
+2023-02-06T08:40:39.774364-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Notifying clients 
of new order 8 at GRJQ5BC0
+2023-02-06T08:40:39.774778-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000G005YG42T9R1G0000003''
+2023-02-06T08:40:39.775279-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO PG poll job active
+2023-02-06T08:40:39.775604-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:39.777741-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Executing command 
`NOTIFY XXJWF6C1DCS1255RJH7GQ1EK16J8DMRSQ6K9EDKNKCP7HRVWAJPKG, '''
+2023-02-06T08:40:39.778244-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO PG poll job active
+2023-02-06T08:40:39.778584-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:39.778872-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Committing merchant 
DB transaction run pay
+2023-02-06T08:40:39.782581-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Notifying clients 
about payment of order 10
+2023-02-06T08:40:39.783007-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Executing command 
`NOTIFY XQ02W40GV4864F3VR6FET0MJG9XQ813EQ99828EZX0PFYNW46VRYG, '''
+2023-02-06T08:40:39.783529-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO PG poll job active
+2023-02-06T08:40:39.783853-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:39.784209-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Notifying clients 
about session change to  for https://example.com
+2023-02-06T08:40:39.784731-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Executing command 
`NOTIFY X3V8B51YRVEPXDGPP1CBR9KC9PV8ZW936RQD4ERP25E4TRPXZKR6G, '''
+2023-02-06T08:40:39.785252-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO PG poll job active
+2023-02-06T08:40:39.785577-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:39.791833-0500 
taler-merchant-httpd-17112(VKDAW8NA4813R7PP2QC3M680DC) INFO Finished handling 
request for `/orders/10/pay' with MHD termination code 0
+2023-02-06T08:40:39.792392-0500 .libs/test_merchant_api_cs-16942 INFO /pay 
completed with response code 200
+2023-02-06T08:40:39.797514-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:39.797656-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pay-too-much-10
+2023-02-06T08:40:39.814110-0500 
taler-merchant-httpd-17112(WP45BPCA4W6GQZ3KCPVKKGJWFR) INFO Handling request 
(POST) for URL '/orders/10/pay'
+2023-02-06T08:40:39.831699-0500 
taler-merchant-httpd-17112(WP45BPCA4W6GQZ3KCPVKKGJWFR) INFO Order `10' paid, 
checking for double-payment
+2023-02-06T08:40:39.834932-0500 
taler-merchant-httpd-17112(WP45BPCA4W6GQZ3KCPVKKGJWFR) INFO Client attempted to 
pay extra for already paid order `10'
+2023-02-06T08:40:39.852685-0500 
taler-merchant-httpd-17112(WP45BPCA4W6GQZ3KCPVKKGJWFR) INFO Finished handling 
request for `/orders/10/pay' with MHD termination code 0
+2023-02-06T08:40:39.855035-0500 .libs/test_merchant_api_cs-16942 INFO /pay 
completed with response code 409
+2023-02-06T08:40:39.857069-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:39.857285-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: run-aggregator-10-aggregator
+==17297== Memcheck, a memory error detector
+==17297== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17297== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17297== Command: /home/priscilla/install/bin/taler-exchange-aggregator -c 
test_merchant_api-cs.conf -L INFO -t -y
+==17297== 
+2023-02-06T08:40:40.383407-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:40.405122-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:41.371341-0500 taler-exchange-aggregator-17297 INFO Change in 
PQ event FD to -1
+2023-02-06T08:40:41.417285-0500 taler-exchange-aggregator-17297 INFO New poll 
FD is -1
+2023-02-06T08:40:41.554246-0500 taler-exchange-aggregator-17297 INFO Change in 
PQ event FD to 8
+2023-02-06T08:40:41.554509-0500 taler-exchange-aggregator-17297 INFO New poll 
FD is 8
+2023-02-06T08:40:41.615723-0500 taler-exchange-aggregator-17297 INFO Draining 
KYC alerts
+2023-02-06T08:40:41.618323-0500 taler-exchange-aggregator-17297 INFO Starting 
transaction `handle kyc alerts'
+2023-02-06T08:40:41.622669-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:41.645602-0500 taler-exchange-aggregator-17297 INFO Running 
aggregation shard
+2023-02-06T08:40:41.646724-0500 taler-exchange-aggregator-17297 INFO Starting 
transaction `begin_revolving_shard'
+2023-02-06T08:40:41.679171-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:41.834880-0500 taler-exchange-aggregator-17297 INFO Starting 
shard [0:2147483647]!
+2023-02-06T08:40:41.835731-0500 taler-exchange-aggregator-17297 INFO Checking 
for ready deposits to aggregate
+2023-02-06T08:40:41.838242-0500 taler-exchange-aggregator-17297 INFO Starting 
READ COMMITTED DEFERRED transaction `deferred wire out'
+2023-02-06T08:40:41.843827-0500 taler-exchange-aggregator-17297 INFO Finding 
ready deposits by deadline Mon Feb 06 08:40:41 2023 (1675690841000000)
+2023-02-06T08:40:41.850080-0500 taler-exchange-aggregator-17297 INFO Found 
ready deposit!
+2023-02-06T08:40:41.969144-0500 taler-exchange-aggregator-17297 INFO Returning 
amount EUR:9.98 in KYC check
+2023-02-06T08:40:41.970526-0500 taler-exchange-aggregator-17297 INFO KYC check 
with new amount EUR:9.98
+2023-02-06T08:40:41.971695-0500 taler-exchange-aggregator-17297 INFO KYC 
check: new total is EUR:9.98
+2023-02-06T08:40:41.973931-0500 taler-exchange-aggregator-17297 INFO Preparing 
wire transfer of EUR:9.97 to GRJQ5BC0
+2023-02-06T08:40:41.985816-0500 taler-exchange-aggregator-17297 INFO 
Committing aggregation result
+2023-02-06T08:40:41.994288-0500 taler-exchange-aggregator-17297 INFO Commit 
complete, going again
+2023-02-06T08:40:41.994895-0500 taler-exchange-aggregator-17297 INFO Checking 
for ready deposits to aggregate
+2023-02-06T08:40:41.995877-0500 taler-exchange-aggregator-17297 INFO Starting 
READ COMMITTED DEFERRED transaction `deferred wire out'
+2023-02-06T08:40:41.996193-0500 taler-exchange-aggregator-17297 INFO Finding 
ready deposits by deadline Mon Feb 06 08:40:41 2023 (1675690841000000)
+2023-02-06T08:40:42.000763-0500 taler-exchange-aggregator-17297 INFO Completed 
shard [0,2147483647] after 997 ms with 1 deposits
+2023-02-06T08:40:42.003738-0500 taler-exchange-aggregator-17297 INFO Releasing 
revolving shard aggregator 0-2147483647
+2023-02-06T08:40:42.006729-0500 taler-exchange-aggregator-17297 INFO Draining 
KYC alerts
+2023-02-06T08:40:42.007053-0500 taler-exchange-aggregator-17297 INFO Starting 
transaction `handle kyc alerts'
+2023-02-06T08:40:42.008896-0500 taler-exchange-aggregator-17297 INFO Running 
aggregation shard
+2023-02-06T08:40:42.009226-0500 taler-exchange-aggregator-17297 INFO Starting 
transaction `begin_revolving_shard'
+2023-02-06T08:40:42.070344-0500 taler-exchange-aggregator-17297 INFO Starting 
shard [0:2147483647]!
+2023-02-06T08:40:42.070733-0500 taler-exchange-aggregator-17297 INFO Checking 
for ready deposits to aggregate
+2023-02-06T08:40:42.071677-0500 taler-exchange-aggregator-17297 INFO Starting 
READ COMMITTED DEFERRED transaction `deferred wire out'
+2023-02-06T08:40:42.072022-0500 taler-exchange-aggregator-17297 INFO Finding 
ready deposits by deadline Mon Feb 06 08:40:42 2023 (1675690842000000)
+2023-02-06T08:40:42.073494-0500 taler-exchange-aggregator-17297 INFO Completed 
shard [0,2147483647] after 73 ms with 0 deposits
+2023-02-06T08:40:42.073859-0500 taler-exchange-aggregator-17297 INFO Releasing 
revolving shard aggregator 0-2147483647
+2023-02-06T08:40:42.081384-0500 taler-exchange-aggregator-17297 INFO Running 
shutdown
+==17297== 
+==17297== HEAP SUMMARY:
+==17297==     in use at exit: 5,318 bytes in 27 blocks
+==17297==   total heap usage: 3,935 allocs, 3,908 frees, 538,983 bytes 
allocated
+==17297== 
+==17297== LEAK SUMMARY:
+==17297==    definitely lost: 0 bytes in 0 blocks
+==17297==    indirectly lost: 0 bytes in 0 blocks
+==17297==      possibly lost: 0 bytes in 0 blocks
+==17297==    still reachable: 5,318 bytes in 27 blocks
+==17297==         suppressed: 0 bytes in 0 blocks
+==17297== Rerun with --leak-check=full to see details of leaked memory
+==17297== 
+==17297== For lists of detected and suppressed errors, rerun with: -s
+==17297== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:40:42.243576-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:42.243836-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: run-aggregator-10-transfer
+==17301== Memcheck, a memory error detector
+==17301== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17301== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17301== Command: /home/priscilla/install/bin/taler-exchange-transfer -c 
test_merchant_api-cs.conf -L INFO -S 1 -w 0 -t
+==17301== 
+2023-02-06T08:40:42.407568-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:42.432346-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:43.681112-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:43.702574-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:43.786476-0500 taler-exchange-transfer-17301 INFO Change in 
PQ event FD to -1
+2023-02-06T08:40:43.832262-0500 taler-exchange-transfer-17301 INFO New poll FD 
is -1
+2023-02-06T08:40:43.970890-0500 taler-exchange-transfer-17301 INFO Change in 
PQ event FD to 8
+2023-02-06T08:40:43.971149-0500 taler-exchange-transfer-17301 INFO New poll FD 
is 8
+2023-02-06T08:40:43.995681-0500 taler-exchange-transfer-17301 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:44.051503-0500 taler-exchange-transfer-17301 INFO Claimed new 
shard
+2023-02-06T08:40:44.054818-0500 taler-exchange-transfer-17301 INFO Starting 
with shard [2,3)
+2023-02-06T08:40:44.056474-0500 taler-exchange-transfer-17301 INFO Checking 
for 1 pending wire transfers [2-...)
+2023-02-06T08:40:44.057534-0500 taler-exchange-transfer-17301 INFO Starting 
READ COMMITTED transaction `aggregator run transfer`
+2023-02-06T08:40:44.066417-0500 taler-exchange-transfer-17301 INFO Starting 
wire transfer 2
+2023-02-06T08:40:44.434999-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:44.458205-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:44.543764-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/transfer'
+2023-02-06T08:40:44.544070-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/transfer' for account `2'
+2023-02-06T08:40:44.544350-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/transfer'
+2023-02-06T08:40:44.544578-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/transfer' for account `2'
+2023-02-06T08:40:44.544812-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/transfer'
+2023-02-06T08:40:44.545044-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/transfer' for account `2'
+2023-02-06T08:40:44.547841-0500 .libs/test_merchant_api_cs-16942 INFO Making 
transfer 4 from 2 to 3 over EUR:9.97 and subject XZP8KTYJ; for exchange: 
http://localhost:8081/
+2023-02-06T08:40:44.548315-0500 .libs/test_merchant_api_cs-16942 INFO 
Receiving incoming wire transfer: 2->3, subject: XZP8KTYJ, amount: EUR:9.97, 
from http://localhost:8081/
+2023-02-06T08:40:44.618103-0500 taler-exchange-transfer-17301 INFO Wire 
transfer 2 completed successfully
+2023-02-06T08:40:44.627502-0500 taler-exchange-transfer-17301 INFO Batch 
complete
+2023-02-06T08:40:44.643363-0500 taler-exchange-transfer-17301 INFO Shard [2,2) 
completed
+2023-02-06T08:40:44.644265-0500 taler-exchange-transfer-17301 INFO Completing 
shard 2-3
+2023-02-06T08:40:44.651443-0500 taler-exchange-transfer-17301 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:44.655527-0500 taler-exchange-transfer-17301 INFO Trying to 
claim shard (3-4]
+2023-02-06T08:40:44.660345-0500 taler-exchange-transfer-17301 INFO Claimed new 
shard
+2023-02-06T08:40:44.660556-0500 taler-exchange-transfer-17301 INFO Starting 
with shard [3,4)
+2023-02-06T08:40:44.660806-0500 taler-exchange-transfer-17301 INFO Checking 
for 1 pending wire transfers [3-...)
+2023-02-06T08:40:44.661047-0500 taler-exchange-transfer-17301 INFO Starting 
READ COMMITTED transaction `aggregator run transfer`
+2023-02-06T08:40:44.664209-0500 taler-exchange-transfer-17301 INFO No more 
pending wire transfers, shutting down (because we are in test mode)
+2023-02-06T08:40:44.667818-0500 taler-exchange-transfer-17301 INFO Running 
shutdown
+==17301== 
+==17301== HEAP SUMMARY:
+==17301==     in use at exit: 5,291 bytes in 26 blocks
+==17301==   total heap usage: 3,792 allocs, 3,766 frees, 717,509 bytes 
allocated
+==17301== 
+==17301== LEAK SUMMARY:
+==17301==    definitely lost: 0 bytes in 0 blocks
+==17301==    indirectly lost: 0 bytes in 0 blocks
+==17301==      possibly lost: 0 bytes in 0 blocks
+==17301==    still reachable: 5,291 bytes in 26 blocks
+==17301==         suppressed: 0 bytes in 0 blocks
+==17301== Rerun with --leak-check=full to see details of leaked memory
+==17301== 
+==17301== For lists of detected and suppressed errors, rerun with: -s
+==17301== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:40:44.805799-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:44.806074-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check_bank_transfer-9.97-10
+2023-02-06T08:40:44.806424-0500 .libs/test_merchant_api_cs-16942 INFO Deposit 
reference NOT given
+2023-02-06T08:40:44.806839-0500 .libs/test_merchant_api_cs-16942 INFO 
converted debit_payto (payto://x-taler-bank/localhost/2?receiver-name=2) to 
debit_account (2)
+2023-02-06T08:40:44.807171-0500 .libs/test_merchant_api_cs-16942 INFO 
converted credit_payto (payto://x-taler-bank/localhost/3?receiver-name=3) to 
credit_account (3)
+2023-02-06T08:40:44.807653-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:44.807866-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check_bank_empty-10
+2023-02-06T08:40:44.809691-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-again'
+2023-02-06T08:40:44.809894-0500 .libs/test_merchant_api_cs-16942 INFO Exiting 
from batch: pay-again
+2023-02-06T08:40:44.810154-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:44.810362-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-reserve-11
+2023-02-06T08:40:44.813381-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting administrative transaction at 
`http://localhost:8082/2/admin/add-incoming' for reserve WP8ACMMY
+2023-02-06T08:40:44.817401-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:44.817644-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:44.817886-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:44.818105-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:44.818328-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:44.818671-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:44.819673-0500 .libs/test_merchant_api_cs-16942 INFO 
Receiving incoming wire transfer: 62->2, subject: WP8ACMMY, amount: EUR:10.02
+2023-02-06T08:40:44.820246-0500 .libs/test_merchant_api_cs-16942 INFO Making 
transfer from 62 to 2 over EUR:10.02 and subject WP8ACMMY at row 5
+2023-02-06T08:40:44.822610-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:44.822839-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: wirewatch-11
+==17309== Memcheck, a memory error detector
+==17309== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17309== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17309== Command: /home/priscilla/install/bin/taler-exchange-wirewatch -c 
test_merchant_api-cs.conf -S 1 -w 0 -t -L DEBUG
+==17309== 
+2023-02-06T08:40:45.703892-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:45.745798-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:46.334992-0500 taler-exchange-wirewatch-17309 INFO Change in 
PQ event FD to -1
+2023-02-06T08:40:46.381035-0500 taler-exchange-wirewatch-17309 INFO New poll 
FD is -1
+2023-02-06T08:40:46.460822-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:46.482976-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:46.518802-0500 taler-exchange-wirewatch-17309 INFO Change in 
PQ event FD to 8
+2023-02-06T08:40:46.519045-0500 taler-exchange-wirewatch-17309 INFO New poll 
FD is 8
+2023-02-06T08:40:46.542282-0500 taler-exchange-wirewatch-17309 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:40:46.544881-0500 taler-exchange-wirewatch-17309 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:46.595550-0500 taler-exchange-wirewatch-17309 INFO Claimed 
new shard
+2023-02-06T08:40:46.597198-0500 taler-exchange-wirewatch-17309 INFO Starting 
with shard wirewatch-exchange-account-exchange at (3,4] locked for 0 ms
+2023-02-06T08:40:46.598052-0500 taler-exchange-wirewatch-17309 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:40:46.599425-0500 taler-exchange-wirewatch-17309 INFO Requesting 
credit history staring from 3
+2023-02-06T08:40:46.605491-0500 taler-exchange-wirewatch-17309 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=3'
+2023-02-06T08:40:46.957216-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:40:46.957462-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:40:46.957639-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x80dc9b0 (0)
+2023-02-06T08:40:46.957850-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 3
+2023-02-06T08:40:46.958121-0500 .libs/test_merchant_api_cs-16942 INFO 
Returning 1 credit transactions starting (inclusive) from 5
+2023-02-06T08:40:47.067661-0500 taler-exchange-wirewatch-17309 INFO History 
request returned with HTTP status 200
+2023-02-06T08:40:47.071440-0500 taler-exchange-wirewatch-17309 INFO Serial ID 
5 past shard end at 4, ending iteration early!
+2023-02-06T08:40:47.072517-0500 taler-exchange-wirewatch-17309 INFO Starting 
READ COMMITTED transaction `wirewatch check for incoming wire transfers`
+2023-02-06T08:40:47.073889-0500 taler-exchange-wirewatch-17309 INFO Importing 
0 transactions
+2023-02-06T08:40:47.074899-0500 taler-exchange-wirewatch-17309 INFO Completing 
shard 3-4
+2023-02-06T08:40:47.078454-0500 taler-exchange-wirewatch-17309 INFO Completed 
shard wirewatch-exchange-account-exchange (3,4] after 533 ms
+2023-02-06T08:40:47.079107-0500 taler-exchange-wirewatch-17309 INFO Committing 
wirewatch-exchange-account-exchange progress (3,4] at 4
+ (shard done)2023-02-06T08:40:47.083683-0500 taler-exchange-wirewatch-17309 
INFO Increasing batch size to 2
+2023-02-06T08:40:47.084175-0500 taler-exchange-wirewatch-17309 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:40:47.099520-0500 taler-exchange-wirewatch-17309 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:47.103603-0500 taler-exchange-wirewatch-17309 INFO Trying to 
claim shard (4-5]
+2023-02-06T08:40:47.115933-0500 taler-exchange-wirewatch-17309 INFO Claimed 
new shard
+2023-02-06T08:40:47.116150-0500 taler-exchange-wirewatch-17309 INFO Starting 
with shard wirewatch-exchange-account-exchange at (4,5] locked for 0 ms
+2023-02-06T08:40:47.116353-0500 taler-exchange-wirewatch-17309 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:40:47.117688-0500 taler-exchange-wirewatch-17309 INFO Requesting 
credit history staring from 4
+2023-02-06T08:40:47.117926-0500 taler-exchange-wirewatch-17309 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=4'
+2023-02-06T08:40:47.122185-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:40:47.122381-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:40:47.122559-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x8bdc380 (0)
+2023-02-06T08:40:47.122749-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 4
+2023-02-06T08:40:47.122978-0500 .libs/test_merchant_api_cs-16942 INFO 
Returning 1 credit transactions starting (inclusive) from 5
+2023-02-06T08:40:47.127186-0500 taler-exchange-wirewatch-17309 INFO History 
request returned with HTTP status 200
+2023-02-06T08:40:47.127627-0500 taler-exchange-wirewatch-17309 INFO Starting 
READ COMMITTED transaction `wirewatch check for incoming wire transfers`
+2023-02-06T08:40:47.128248-0500 taler-exchange-wirewatch-17309 INFO Importing 
1 transactions
+2023-02-06T08:40:47.206800-0500 taler-exchange-wirewatch-17309 INFO Notifying 
on reserve!
+2023-02-06T08:40:47.209761-0500 taler-exchange-wirewatch-17309 INFO Executing 
command `NOTIFY XS8RWQYCS9JKZ3YR0P1J7RZNRB66GS04D73T60GXEFTN9TSHZTKK0, '''
+2023-02-06T08:40:47.211030-0500 taler-exchange-wirewatch-17309 INFO PG poll 
job active
+2023-02-06T08:40:47.212577-0500 taler-exchange-wirewatch-17309 INFO PG poll 
job finishes after 0 events
+2023-02-06T08:40:47.213752-0500 taler-exchange-wirewatch-17309 INFO Imported 
transaction 5.2023-02-06T08:40:47.214040-0500 taler-exchange-wirewatch-17309 
INFO Completing shard 4-5
+2023-02-06T08:40:47.214997-0500 taler-exchange-wirewatch-17309 INFO Completed 
shard wirewatch-exchange-account-exchange (4,5] after 115 ms
+2023-02-06T08:40:47.215214-0500 taler-exchange-wirewatch-17309 INFO Committing 
wirewatch-exchange-account-exchange progress (4,5] at 5
+ (shard done)2023-02-06T08:40:47.227240-0500 taler-exchange-wirewatch-17309 
INFO Will try to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:40:47.227962-0500 taler-exchange-wirewatch-17309 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:47.229867-0500 taler-exchange-wirewatch-17309 INFO Trying to 
claim shard (5-6]
+2023-02-06T08:40:47.238145-0500 taler-exchange-wirewatch-17309 INFO Claimed 
new shard
+2023-02-06T08:40:47.238343-0500 taler-exchange-wirewatch-17309 INFO Starting 
with shard wirewatch-exchange-account-exchange at (5,6] locked for 0 ms
+2023-02-06T08:40:47.238538-0500 taler-exchange-wirewatch-17309 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:40:47.238772-0500 taler-exchange-wirewatch-17309 INFO Requesting 
credit history staring from 5
+2023-02-06T08:40:47.238976-0500 taler-exchange-wirewatch-17309 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=5'
+2023-02-06T08:40:47.240237-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:40:47.240484-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:40:47.240699-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x824b8f0 (0)
+2023-02-06T08:40:47.240982-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 5
+2023-02-06T08:40:47.243152-0500 taler-exchange-wirewatch-17309 INFO History 
request returned with HTTP status 204
+2023-02-06T08:40:47.243922-0500 taler-exchange-wirewatch-17309 INFO 
Transaction list drained and in test mode. Exiting
+==17309== 
+==17309== HEAP SUMMARY:
+==17309==     in use at exit: 5,293 bytes in 26 blocks
+==17309==   total heap usage: 3,994 allocs, 3,968 frees, 517,202 bytes 
allocated
+==17309== 
+==17309== LEAK SUMMARY:
+==17309==    definitely lost: 0 bytes in 0 blocks
+==17309==    indirectly lost: 0 bytes in 0 blocks
+==17309==      possibly lost: 0 bytes in 0 blocks
+==17309==    still reachable: 5,293 bytes in 26 blocks
+==17309==         suppressed: 0 bytes in 0 blocks
+==17309== Rerun with --leak-check=full to see details of leaked memory
+==17309== 
+==17309== For lists of detected and suppressed errors, rerun with: -s
+==17309== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:40:47.392975-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:47.393236-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check_bank_transfer-11
+2023-02-06T08:40:47.393551-0500 .libs/test_merchant_api_cs-16942 INFO 
converted debit_payto (payto://x-taler-bank/localhost/62?receiver-name=62) to 
debit_account (62)
+2023-02-06T08:40:47.394015-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:47.394223-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-coin-11a
+2023-02-06T08:40:47.406713-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:47.408906-0500 
taler-exchange-httpd-17126(08GYKZ9C0PG8KKPDPZK25K4PGW) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:47.409213-0500 
taler-exchange-httpd-17126(08GYKZ9C0PG8KKPDPZK25K4PGW) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:47.409485-0500 
taler-exchange-httpd-17126(08GYKZ9C0PG8KKPDPZK25K4PGW) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:47.412348-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:40:47.418332-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:40:47.418616-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:40:47.418898-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 6 ms
+2023-02-06T08:40:47.421625-0500 
taler-exchange-httpd-17126(08GYKZ9C0PG8KKPDPZK25K4PGW) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:40:47.472261-0500 .libs/test_merchant_api_cs-16942 INFO 
Attempting to withdraw from reserve WP8ACMMY
+2023-02-06T08:40:47.476530-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:47.478261-0500 
taler-exchange-httpd-17126(5ZEYKYKGBP1QHVN0B8PGCYHEPR) INFO Handling request 
(POST) for URL 
'/reserves/ECGYB51ERNBR5HEVM02MW75BT13HDHEZWW196HGRH9STB8VJHWYG/withdraw'
+2023-02-06T08:40:47.478610-0500 
taler-exchange-httpd-17126(5ZEYKYKGBP1QHVN0B8PGCYHEPR) INFO Handling request 
(POST) for URL 
'/reserves/ECGYB51ERNBR5HEVM02MW75BT13HDHEZWW196HGRH9STB8VJHWYG/withdraw'
+2023-02-06T08:40:47.478909-0500 
taler-exchange-httpd-17126(5ZEYKYKGBP1QHVN0B8PGCYHEPR) INFO Handling request 
(POST) for URL 
'/reserves/ECGYB51ERNBR5HEVM02MW75BT13HDHEZWW196HGRH9STB8VJHWYG/withdraw'
+2023-02-06T08:40:47.488725-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:40:47.490892-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:40:47.491149-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:40:47.491433-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2724 µs
+2023-02-06T08:40:47.491887-0500 
taler-exchange-httpd-17126(5ZEYKYKGBP1QHVN0B8PGCYHEPR) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:40:47.493096-0500 
taler-exchange-httpd-17126(5ZEYKYKGBP1QHVN0B8PGCYHEPR) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:40:47.493402-0500 
taler-exchange-httpd-17126(5ZEYKYKGBP1QHVN0B8PGCYHEPR) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:40:47.493674-0500 
taler-exchange-httpd-17126(5ZEYKYKGBP1QHVN0B8PGCYHEPR) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:40:47.506632-0500 
taler-exchange-httpd-17126(5ZEYKYKGBP1QHVN0B8PGCYHEPR) INFO Request for 
`/reserves/ECGYB51ERNBR5HEVM02MW75BT13HDHEZWW196HGRH9STB8VJHWYG/withdraw' 
completed (0)
+2023-02-06T08:40:47.552700-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:47.552919-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-coin-11b
+2023-02-06T08:40:47.560405-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:47.562589-0500 
taler-exchange-httpd-17126(9NQR5C4JD2GXDG6KMEB0B1DGS4) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:47.562898-0500 
taler-exchange-httpd-17126(9NQR5C4JD2GXDG6KMEB0B1DGS4) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:47.563171-0500 
taler-exchange-httpd-17126(9NQR5C4JD2GXDG6KMEB0B1DGS4) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:47.566013-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:40:47.571942-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:40:47.572199-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:40:47.572480-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 6 ms
+2023-02-06T08:40:47.574599-0500 
taler-exchange-httpd-17126(9NQR5C4JD2GXDG6KMEB0B1DGS4) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:40:47.612303-0500 .libs/test_merchant_api_cs-16942 INFO 
Attempting to withdraw from reserve WP8ACMMY
+2023-02-06T08:40:47.615557-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:47.617289-0500 
taler-exchange-httpd-17126(9K8HD42XRMX8QD53XJQZ7PSP40) INFO Handling request 
(POST) for URL 
'/reserves/ECGYB51ERNBR5HEVM02MW75BT13HDHEZWW196HGRH9STB8VJHWYG/withdraw'
+2023-02-06T08:40:47.617623-0500 
taler-exchange-httpd-17126(9K8HD42XRMX8QD53XJQZ7PSP40) INFO Handling request 
(POST) for URL 
'/reserves/ECGYB51ERNBR5HEVM02MW75BT13HDHEZWW196HGRH9STB8VJHWYG/withdraw'
+2023-02-06T08:40:47.617921-0500 
taler-exchange-httpd-17126(9K8HD42XRMX8QD53XJQZ7PSP40) INFO Handling request 
(POST) for URL 
'/reserves/ECGYB51ERNBR5HEVM02MW75BT13HDHEZWW196HGRH9STB8VJHWYG/withdraw'
+2023-02-06T08:40:47.627926-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:40:47.630050-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:40:47.630304-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:40:47.630602-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2691 µs
+2023-02-06T08:40:47.631101-0500 
taler-exchange-httpd-17126(9K8HD42XRMX8QD53XJQZ7PSP40) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:40:47.632298-0500 
taler-exchange-httpd-17126(9K8HD42XRMX8QD53XJQZ7PSP40) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:40:47.632573-0500 
taler-exchange-httpd-17126(9K8HD42XRMX8QD53XJQZ7PSP40) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:40:47.632845-0500 
taler-exchange-httpd-17126(9K8HD42XRMX8QD53XJQZ7PSP40) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:40:47.640168-0500 
taler-exchange-httpd-17126(9K8HD42XRMX8QD53XJQZ7PSP40) INFO Request for 
`/reserves/ECGYB51ERNBR5HEVM02MW75BT13HDHEZWW196HGRH9STB8VJHWYG/withdraw' 
completed (0)
+2023-02-06T08:40:47.677178-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:47.677358-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-status-11
+2023-02-06T08:40:47.679046-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:47.680729-0500 
taler-exchange-httpd-17126(VD1VNK7QKG7B3GNM3B8HDWVETR) INFO Handling request 
(GET) for URL '/reserves/ECGYB51ERNBR5HEVM02MW75BT13HDHEZWW196HGRH9STB8VJHWYG'
+2023-02-06T08:40:47.681204-0500 
taler-exchange-httpd-17126(VD1VNK7QKG7B3GNM3B8HDWVETR) INFO Starting 
transaction `get reserve balance'
+2023-02-06T08:40:47.684101-0500 
taler-exchange-httpd-17126(VD1VNK7QKG7B3GNM3B8HDWVETR) INFO Request for 
`/reserves/ECGYB51ERNBR5HEVM02MW75BT13HDHEZWW196HGRH9STB8VJHWYG' completed (0)
+2023-02-06T08:40:47.684824-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:47.684980-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-11
+2023-02-06T08:40:47.690452-0500 
taler-merchant-httpd-17112(DP850R88DQ1E9BHTE69KVGNYA8) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:47.707951-0500 
taler-merchant-httpd-17112(DP850R88DQ1E9BHTE69KVGNYA8) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:40:47.711688-0500 
taler-merchant-httpd-17112(DP850R88DQ1E9BHTE69KVGNYA8) INFO Notifying clients 
of new order 9 at GRJQ5BC0
+2023-02-06T08:40:47.712059-0500 
taler-merchant-httpd-17112(DP850R88DQ1E9BHTE69KVGNYA8) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000J005YG42VC2NR0000000''
+2023-02-06T08:40:47.712670-0500 
taler-merchant-httpd-17112(DP850R88DQ1E9BHTE69KVGNYA8) INFO PG poll job active
+2023-02-06T08:40:47.713002-0500 
taler-merchant-httpd-17112(DP850R88DQ1E9BHTE69KVGNYA8) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:47.713255-0500 
taler-merchant-httpd-17112(DP850R88DQ1E9BHTE69KVGNYA8) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T08:40:47.717988-0500 
taler-merchant-httpd-17112(DP850R88DQ1E9BHTE69KVGNYA8) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:47.718922-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/11/claim
+2023-02-06T08:40:47.722726-0500 
taler-merchant-httpd-17112(87HEP760YYJXWMRH8A7RKBSQJ0) INFO Handling request 
(POST) for URL '/orders/11/claim'
+2023-02-06T08:40:47.723746-0500 
taler-merchant-httpd-17112(87HEP760YYJXWMRH8A7RKBSQJ0) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:47.741220-0500 
taler-merchant-httpd-17112(87HEP760YYJXWMRH8A7RKBSQJ0) INFO Notifying clients 
of new order 9 at GRJQ5BC0
+2023-02-06T08:40:47.741595-0500 
taler-merchant-httpd-17112(87HEP760YYJXWMRH8A7RKBSQJ0) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000J005YG42VC2NR0000001''
+2023-02-06T08:40:47.742192-0500 
taler-merchant-httpd-17112(87HEP760YYJXWMRH8A7RKBSQJ0) INFO PG poll job active
+2023-02-06T08:40:47.742537-0500 
taler-merchant-httpd-17112(87HEP760YYJXWMRH8A7RKBSQJ0) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:47.742793-0500 
taler-merchant-httpd-17112(87HEP760YYJXWMRH8A7RKBSQJ0) INFO Committing merchant 
DB transaction claim order
+2023-02-06T08:40:47.746184-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:47.769885-0500 
taler-merchant-httpd-17112(87HEP760YYJXWMRH8A7RKBSQJ0) INFO Finished handling 
request for `/orders/11/claim' with MHD termination code 0
+2023-02-06T08:40:47.774018-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:40:47.787805-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:47.788837-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:47.789054-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pay-fail-partial-double-11-good
+2023-02-06T08:40:47.802964-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Handling request 
(POST) for URL '/orders/11/pay'
+2023-02-06T08:40:47.818890-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Handling payment 
for order `11' with contract hash `1E7E4W3R'
+2023-02-06T08:40:47.819458-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Starting merchant 
DB transaction `run pay'
+2023-02-06T08:40:47.821116-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Rolling back 
merchant DB transaction `run pay'
+2023-02-06T08:40:47.821747-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:47.822198-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Processing payment 
with exchange http://localhost:8081/
+2023-02-06T08:40:47.822506-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Initiating batch 
deposit with 1 coins
+2023-02-06T08:40:47.856165-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:47.858405-0500 
taler-exchange-httpd-17126(S1WDAPKAEGRHSQ678PFA5WD8A0) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:47.858741-0500 
taler-exchange-httpd-17126(S1WDAPKAEGRHSQ678PFA5WD8A0) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:47.859025-0500 
taler-exchange-httpd-17126(S1WDAPKAEGRHSQ678PFA5WD8A0) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:47.885618-0500 
taler-exchange-httpd-17126(S1WDAPKAEGRHSQ678PFA5WD8A0) INFO Starting 
transaction `execute batch deposit'
+2023-02-06T08:40:47.899905-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:40:47.900207-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:40:47.903183-0500 
taler-exchange-httpd-17126(S1WDAPKAEGRHSQ678PFA5WD8A0) INFO Request for 
`/batch-deposit' completed (0)
+2023-02-06T08:40:47.911498-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Batch deposit 
completed with status 200
+2023-02-06T08:40:47.911892-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Starting merchant 
DB transaction `batch-deposit-insert-confirmation'
+2023-02-06T08:40:47.914279-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Committing merchant 
DB transaction batch-deposit-insert-confirmation
+2023-02-06T08:40:47.928369-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Not re-checking KYC 
status at `http://localhost:8081/', as we already recently asked
+2023-02-06T08:40:47.928738-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Starting merchant 
DB transaction `run pay'
+2023-02-06T08:40:47.930763-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Subtracting total 
refunds from paid amount: EUR:0
+2023-02-06T08:40:47.932080-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) WARNING External 
protocol violation detected at taler-merchant-httpd_post-orders-ID-pay.c:1866.
+2023-02-06T08:40:47.934084-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Rolling back 
merchant DB transaction `run pay'
+2023-02-06T08:40:47.935028-0500 .libs/test_merchant_api_cs-16942 INFO /pay 
completed with response code 406
+2023-02-06T08:40:47.935387-0500 
taler-merchant-httpd-17112(1R6JZKBBF34RBDXNDHV5VGWFZR) INFO Finished handling 
request for `/orders/11/pay' with MHD termination code 0
+2023-02-06T08:40:47.936033-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:47.936250-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pay-fail-partial-double-11-bad
+2023-02-06T08:40:47.951231-0500 
taler-merchant-httpd-17112(E25A6F6XS41QH6GDE0DF4VDFX4) INFO Handling request 
(POST) for URL '/orders/11/pay'
+2023-02-06T08:40:47.967812-0500 
taler-merchant-httpd-17112(E25A6F6XS41QH6GDE0DF4VDFX4) INFO Handling payment 
for order `11' with contract hash `1E7E4W3R'
+2023-02-06T08:40:47.968385-0500 
taler-merchant-httpd-17112(E25A6F6XS41QH6GDE0DF4VDFX4) INFO Starting merchant 
DB transaction `run pay'
+2023-02-06T08:40:47.970346-0500 
taler-merchant-httpd-17112(E25A6F6XS41QH6GDE0DF4VDFX4) INFO Rolling back 
merchant DB transaction `run pay'
+2023-02-06T08:40:47.971040-0500 
taler-merchant-httpd-17112(E25A6F6XS41QH6GDE0DF4VDFX4) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:47.971502-0500 
taler-merchant-httpd-17112(E25A6F6XS41QH6GDE0DF4VDFX4) INFO Processing payment 
with exchange http://localhost:8081/
+2023-02-06T08:40:47.971808-0500 
taler-merchant-httpd-17112(E25A6F6XS41QH6GDE0DF4VDFX4) INFO Initiating batch 
deposit with 1 coins
+2023-02-06T08:40:48.007441-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:48.008733-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:48.009041-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:48.009327-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:48.043939-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Starting 
transaction `execute batch deposit'
+2023-02-06T08:40:48.047622-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Starting READ ONLY 
transaction `get_coin_transactions`
+2023-02-06T08:40:48.049698-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Coin 5M342MM1 
yielded 1 transactions of type get_deposit_with_coin_pub
+2023-02-06T08:40:48.050840-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Coin 5M342MM1 
yielded 0 transactions of type get_refresh_session_by_coin
+2023-02-06T08:40:48.052839-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Coin 5M342MM1 
yielded 0 transactions of type get_purse_deposit_by_coin_pub
+2023-02-06T08:40:48.054126-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Coin 5M342MM1 
yielded 0 transactions of type get_purse_decision_by_coin_pub
+2023-02-06T08:40:48.055525-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Coin 5M342MM1 
yielded 0 transactions of type get_refunds_by_coin
+2023-02-06T08:40:48.057127-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Coin 5M342MM1 
yielded 0 transactions of type recoup_by_old_coin
+2023-02-06T08:40:48.058624-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Coin 5M342MM1 
yielded 0 transactions of type recoup_by_coin
+2023-02-06T08:40:48.060377-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Coin 5M342MM1 
yielded 0 transactions of type recoup_by_refreshed_coin
+2023-02-06T08:40:48.061240-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Coin 5M342MM1 
yielded 0 transactions of type reserve_open_by_coin
+2023-02-06T08:40:48.073430-0500 
taler-exchange-httpd-17126(G3FHSJ819V5VR1JJWCTAN5S8BR) INFO Request for 
`/batch-deposit' completed (0)
+2023-02-06T08:40:48.076654-0500 
taler-merchant-httpd-17112(E25A6F6XS41QH6GDE0DF4VDFX4) INFO Operation of type 
DEPOSIT with amount EUR:5
+2023-02-06T08:40:48.082086-0500 
taler-merchant-httpd-17112(E25A6F6XS41QH6GDE0DF4VDFX4) INFO Batch deposit 
completed with status 409
+2023-02-06T08:40:48.082309-0500 
taler-merchant-httpd-17112(E25A6F6XS41QH6GDE0DF4VDFX4) WARNING Deposit 
operation failed with HTTP code 409/1012
+2023-02-06T08:40:48.084657-0500 
taler-merchant-httpd-17112(E25A6F6XS41QH6GDE0DF4VDFX4) INFO Finished handling 
request for `/orders/11/pay' with MHD termination code 0
+2023-02-06T08:40:48.087379-0500 .libs/test_merchant_api_cs-16942 INFO /pay 
completed with response code 409
+2023-02-06T08:40:48.089865-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:48.091567-0500 
taler-exchange-httpd-17126(32BN6WE5QJWTNTNP14A230FGKW) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T08:40:48.092718-0500 
taler-exchange-httpd-17126(32BN6WE5QJWTNTNP14A230FGKW) INFO Filtering /keys by 
cherry pick date Wed Dec 31 19:00:00 1969 found entry 4292010656/53
+2023-02-06T08:40:48.093540-0500 
taler-exchange-httpd-17126(32BN6WE5QJWTNTNP14A230FGKW) INFO Request for `/keys' 
completed (0)
+2023-02-06T08:40:48.438120-0500 .libs/test_merchant_api_cs-16942 INFO Received 
keys from URL `http://localhost:8081/keys' with status 200 and expiration Mon 
Feb 13 13:39:59 2023.
+2023-02-06T08:40:48.483923-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:48.505932-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:49.333110-0500 .libs/test_merchant_api_cs-16942 INFO 
Successfully downloaded exchange's keys
+2023-02-06T08:40:49.333349-0500 .libs/test_merchant_api_cs-16942 INFO 
Connecting to auditor at URL `http://the.auditor/'.
+2023-02-06T08:40:49.333956-0500 .libs/test_merchant_api_cs-16942 INFO 
Operation of type DEPOSIT with amount EUR:5
+2023-02-06T08:40:49.337727-0500 .libs/test_merchant_api_cs-16942 INFO 
Accepting proof of double-spending (or coin public key re-use)
+2023-02-06T08:40:49.337878-0500 .libs/test_merchant_api_cs-16942 INFO 
Disconnecting from auditor at URL `http://the.auditor/'.
+2023-02-06T08:40:49.372780-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:49.372954-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pay-abort-11
+2023-02-06T08:40:49.385270-0500 
taler-merchant-httpd-17112(X7ZHR2NNCQSDSZBFGDRM555TT0) INFO Handling request 
(POST) for URL '/orders/11/abort'
+2023-02-06T08:40:49.391498-0500 
taler-merchant-httpd-17112(X7ZHR2NNCQSDSZBFGDRM555TT0) INFO Handling /abort for 
order `11' with contract hash `1E7E4W3R'
+2023-02-06T08:40:49.393489-0500 
taler-merchant-httpd-17112(X7ZHR2NNCQSDSZBFGDRM555TT0) INFO Starting merchant 
DB transaction `run abort'
+2023-02-06T08:40:49.402199-0500 
taler-merchant-httpd-17112(X7ZHR2NNCQSDSZBFGDRM555TT0) INFO Committing merchant 
DB transaction run abort
+2023-02-06T08:40:49.406197-0500 
taler-merchant-httpd-17112(X7ZHR2NNCQSDSZBFGDRM555TT0) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:49.425366-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:49.427594-0500 
taler-exchange-httpd-17126(FKR9X3C5S5D1JJBVSR7CHAD5X4) INFO Handling request 
(POST) for URL 
'/coins/80TYC3PJ7A89ME4Q3JQVQTY29AAJKGQE84K469J8N4BCHBZXRQ30/refund'
+2023-02-06T08:40:49.427925-0500 
taler-exchange-httpd-17126(FKR9X3C5S5D1JJBVSR7CHAD5X4) INFO Handling request 
(POST) for URL 
'/coins/80TYC3PJ7A89ME4Q3JQVQTY29AAJKGQE84K469J8N4BCHBZXRQ30/refund'
+2023-02-06T08:40:49.428223-0500 
taler-exchange-httpd-17126(FKR9X3C5S5D1JJBVSR7CHAD5X4) INFO Handling request 
(POST) for URL 
'/coins/80TYC3PJ7A89ME4Q3JQVQTY29AAJKGQE84K469J8N4BCHBZXRQ30/refund'
+2023-02-06T08:40:49.451744-0500 
taler-exchange-httpd-17126(FKR9X3C5S5D1JJBVSR7CHAD5X4) INFO Starting 
transaction `run refund'
+2023-02-06T08:40:49.478913-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:40:49.479217-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:40:49.483730-0500 
taler-exchange-httpd-17126(FKR9X3C5S5D1JJBVSR7CHAD5X4) INFO Request for 
`/coins/80TYC3PJ7A89ME4Q3JQVQTY29AAJKGQE84K469J8N4BCHBZXRQ30/refund' completed 
(0)
+2023-02-06T08:40:49.496745-0500 
taler-merchant-httpd-17112(X7ZHR2NNCQSDSZBFGDRM555TT0) INFO Starting merchant 
DB transaction `run abort'
+2023-02-06T08:40:49.519317-0500 
taler-merchant-httpd-17112(X7ZHR2NNCQSDSZBFGDRM555TT0) INFO Committing merchant 
DB transaction run abort
+2023-02-06T08:40:49.526583-0500 
taler-merchant-httpd-17112(X7ZHR2NNCQSDSZBFGDRM555TT0) INFO Finished handling 
request for `/orders/11/abort' with MHD termination code 0
+2023-02-06T08:40:49.526856-0500 .libs/test_merchant_api_cs-16942 INFO /pay 
completed with response code 200
+2023-02-06T08:40:49.535510-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:49.535640-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: run-aggregator-11-aggregator
+==17319== Memcheck, a memory error detector
+==17319== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17319== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17319== Command: /home/priscilla/install/bin/taler-exchange-aggregator -c 
test_merchant_api-cs.conf -L INFO -t -y
+==17319== 
+2023-02-06T08:40:49.788513-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:49.811701-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:50.507414-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:50.529664-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:51.052068-0500 taler-exchange-aggregator-17319 INFO Change in 
PQ event FD to -1
+2023-02-06T08:40:51.098824-0500 taler-exchange-aggregator-17319 INFO New poll 
FD is -1
+2023-02-06T08:40:51.235519-0500 taler-exchange-aggregator-17319 INFO Change in 
PQ event FD to 8
+2023-02-06T08:40:51.235775-0500 taler-exchange-aggregator-17319 INFO New poll 
FD is 8
+2023-02-06T08:40:51.296884-0500 taler-exchange-aggregator-17319 INFO Draining 
KYC alerts
+2023-02-06T08:40:51.299486-0500 taler-exchange-aggregator-17319 INFO Starting 
transaction `handle kyc alerts'
+2023-02-06T08:40:51.326225-0500 taler-exchange-aggregator-17319 INFO Running 
aggregation shard
+2023-02-06T08:40:51.327807-0500 taler-exchange-aggregator-17319 INFO Starting 
transaction `begin_revolving_shard'
+2023-02-06T08:40:51.518498-0500 taler-exchange-aggregator-17319 INFO Starting 
shard [0:2147483647]!
+2023-02-06T08:40:51.519926-0500 taler-exchange-aggregator-17319 INFO Checking 
for ready deposits to aggregate
+2023-02-06T08:40:51.523733-0500 taler-exchange-aggregator-17319 INFO Starting 
READ COMMITTED DEFERRED transaction `deferred wire out'
+2023-02-06T08:40:51.533714-0500 taler-exchange-aggregator-17319 INFO Finding 
ready deposits by deadline Mon Feb 06 08:40:51 2023 (1675690851000000)
+2023-02-06T08:40:51.542733-0500 taler-exchange-aggregator-17319 INFO Found 
ready deposit!
+2023-02-06T08:40:51.658200-0500 taler-exchange-aggregator-17319 INFO Not ready 
for wire transfer (1/(null))
+2023-02-06T08:40:51.665056-0500 taler-exchange-aggregator-17319 INFO 
Committing aggregation result
+2023-02-06T08:40:51.672427-0500 taler-exchange-aggregator-17319 INFO Commit 
complete, going again
+2023-02-06T08:40:51.673098-0500 taler-exchange-aggregator-17319 INFO Checking 
for ready deposits to aggregate
+2023-02-06T08:40:51.674049-0500 taler-exchange-aggregator-17319 INFO Starting 
READ COMMITTED DEFERRED transaction `deferred wire out'
+2023-02-06T08:40:51.674404-0500 taler-exchange-aggregator-17319 INFO Finding 
ready deposits by deadline Mon Feb 06 08:40:51 2023 (1675690851000000)
+2023-02-06T08:40:51.679586-0500 taler-exchange-aggregator-17319 INFO Completed 
shard [0,2147483647] after 675 ms with 1 deposits
+2023-02-06T08:40:51.681144-0500 taler-exchange-aggregator-17319 INFO Releasing 
revolving shard aggregator 0-2147483647
+2023-02-06T08:40:51.684228-0500 taler-exchange-aggregator-17319 INFO Draining 
KYC alerts
+2023-02-06T08:40:51.684577-0500 taler-exchange-aggregator-17319 INFO Starting 
transaction `handle kyc alerts'
+2023-02-06T08:40:51.686278-0500 taler-exchange-aggregator-17319 INFO Running 
aggregation shard
+2023-02-06T08:40:51.686639-0500 taler-exchange-aggregator-17319 INFO Starting 
transaction `begin_revolving_shard'
+2023-02-06T08:40:51.747315-0500 taler-exchange-aggregator-17319 INFO Starting 
shard [0:2147483647]!
+2023-02-06T08:40:51.747646-0500 taler-exchange-aggregator-17319 INFO Checking 
for ready deposits to aggregate
+2023-02-06T08:40:51.748610-0500 taler-exchange-aggregator-17319 INFO Starting 
READ COMMITTED DEFERRED transaction `deferred wire out'
+2023-02-06T08:40:51.748908-0500 taler-exchange-aggregator-17319 INFO Finding 
ready deposits by deadline Mon Feb 06 08:40:51 2023 (1675690851000000)
+2023-02-06T08:40:51.750334-0500 taler-exchange-aggregator-17319 INFO Completed 
shard [0,2147483647] after 749 ms with 0 deposits
+2023-02-06T08:40:51.750727-0500 taler-exchange-aggregator-17319 INFO Releasing 
revolving shard aggregator 0-2147483647
+2023-02-06T08:40:51.758229-0500 taler-exchange-aggregator-17319 INFO Running 
shutdown
+2023-02-06T08:40:51.814067-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:51.832755-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+==17319== 
+==17319== HEAP SUMMARY:
+==17319==     in use at exit: 5,318 bytes in 27 blocks
+==17319==   total heap usage: 3,924 allocs, 3,897 frees, 537,989 bytes 
allocated
+==17319== 
+==17319== LEAK SUMMARY:
+==17319==    definitely lost: 0 bytes in 0 blocks
+==17319==    indirectly lost: 0 bytes in 0 blocks
+==17319==      possibly lost: 0 bytes in 0 blocks
+==17319==    still reachable: 5,318 bytes in 27 blocks
+==17319==         suppressed: 0 bytes in 0 blocks
+==17319== Rerun with --leak-check=full to see details of leaked memory
+==17319== 
+==17319== For lists of detected and suppressed errors, rerun with: -s
+==17319== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:40:51.920625-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:51.920902-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: run-aggregator-11-transfer
+==17324== Memcheck, a memory error detector
+==17324== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17324== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17324== Command: /home/priscilla/install/bin/taler-exchange-transfer -c 
test_merchant_api-cs.conf -L INFO -S 1 -w 0 -t
+==17324== 
+2023-02-06T08:40:52.249220-0500 taler-merchant-httpd-17112 INFO Received keys 
from URL `http://192.0.2.1/404/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:40:52.249438-0500 taler-merchant-httpd-17112 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T08:40:52.249600-0500 taler-merchant-httpd-17112 WARNING Failed to 
receive /keys response from exchange http://192.0.2.1/404/
+2023-02-06T08:40:52.530105-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:52.552915-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:53.434229-0500 taler-exchange-transfer-17324 INFO Change in 
PQ event FD to -1
+2023-02-06T08:40:53.480513-0500 taler-exchange-transfer-17324 INFO New poll FD 
is -1
+2023-02-06T08:40:53.616849-0500 taler-exchange-transfer-17324 INFO Change in 
PQ event FD to 8
+2023-02-06T08:40:53.617105-0500 taler-exchange-transfer-17324 INFO New poll FD 
is 8
+2023-02-06T08:40:53.641011-0500 taler-exchange-transfer-17324 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:53.695722-0500 taler-exchange-transfer-17324 INFO Claimed new 
shard
+2023-02-06T08:40:53.697387-0500 taler-exchange-transfer-17324 INFO Starting 
with shard [3,4)
+2023-02-06T08:40:53.698768-0500 taler-exchange-transfer-17324 INFO Checking 
for 1 pending wire transfers [3-...)
+2023-02-06T08:40:53.699646-0500 taler-exchange-transfer-17324 INFO Starting 
READ COMMITTED transaction `aggregator run transfer`
+2023-02-06T08:40:53.706210-0500 taler-exchange-transfer-17324 INFO No more 
pending wire transfers, shutting down (because we are in test mode)
+2023-02-06T08:40:53.710428-0500 taler-exchange-transfer-17324 INFO Running 
shutdown
+==17324== 
+==17324== HEAP SUMMARY:
+==17324==     in use at exit: 5,291 bytes in 26 blocks
+==17324==   total heap usage: 3,553 allocs, 3,527 frees, 377,449 bytes 
allocated
+==17324== 
+==17324== LEAK SUMMARY:
+==17324==    definitely lost: 0 bytes in 0 blocks
+==17324==    indirectly lost: 0 bytes in 0 blocks
+==17324==      possibly lost: 0 bytes in 0 blocks
+==17324==    still reachable: 5,291 bytes in 26 blocks
+==17324==         suppressed: 0 bytes in 0 blocks
+==17324== Rerun with --leak-check=full to see details of leaked memory
+==17324== 
+==17324== For lists of detected and suppressed errors, rerun with: -s
+==17324== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:40:53.834666-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:53.837591-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:53.837814-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check_bank_empty-11
+2023-02-06T08:40:53.839705-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `pay-abort'
+2023-02-06T08:40:53.839919-0500 .libs/test_merchant_api_cs-16942 INFO Exiting 
from batch: pay-abort
+2023-02-06T08:40:53.840386-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:53.840599-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-reserve-1r
+2023-02-06T08:40:53.843841-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting administrative transaction at 
`http://localhost:8082/2/admin/add-incoming' for reserve ZK46GK2K
+2023-02-06T08:40:53.848409-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:53.848562-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:53.848722-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:53.848853-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:53.848984-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:53.849115-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:53.849935-0500 .libs/test_merchant_api_cs-16942 INFO 
Receiving incoming wire transfer: 62->2, subject: ZK46GK2K, amount: EUR:10.02
+2023-02-06T08:40:53.850264-0500 .libs/test_merchant_api_cs-16942 INFO Making 
transfer from 62 to 2 over EUR:10.02 and subject ZK46GK2K at row 6
+2023-02-06T08:40:53.852233-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:53.852459-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: wirewatch-1r
+==17328== Memcheck, a memory error detector
+==17328== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17328== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17328== Command: /home/priscilla/install/bin/taler-exchange-wirewatch -c 
test_merchant_api-cs.conf -S 1 -w 0 -t -L DEBUG
+==17328== 
+2023-02-06T08:40:53.889369-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:54.555288-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:54.581242-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:55.364574-0500 taler-exchange-wirewatch-17328 INFO Change in 
PQ event FD to -1
+2023-02-06T08:40:55.410383-0500 taler-exchange-wirewatch-17328 INFO New poll 
FD is -1
+2023-02-06T08:40:55.546985-0500 taler-exchange-wirewatch-17328 INFO Change in 
PQ event FD to 8
+2023-02-06T08:40:55.547240-0500 taler-exchange-wirewatch-17328 INFO New poll 
FD is 8
+2023-02-06T08:40:55.570398-0500 taler-exchange-wirewatch-17328 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:40:55.573018-0500 taler-exchange-wirewatch-17328 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:55.617998-0500 taler-exchange-wirewatch-17328 INFO Claimed 
new shard
+2023-02-06T08:40:55.619671-0500 taler-exchange-wirewatch-17328 INFO Starting 
with shard wirewatch-exchange-account-exchange at (5,6] locked for 0 ms
+2023-02-06T08:40:55.620525-0500 taler-exchange-wirewatch-17328 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:40:55.621887-0500 taler-exchange-wirewatch-17328 INFO Requesting 
credit history staring from 5
+2023-02-06T08:40:55.628007-0500 taler-exchange-wirewatch-17328 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=5'
+2023-02-06T08:40:55.891964-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:55.915684-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:55.982738-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:40:55.982922-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:40:55.983078-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x5abb4e0 (0)
+2023-02-06T08:40:55.983279-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 5
+2023-02-06T08:40:55.983525-0500 .libs/test_merchant_api_cs-16942 INFO 
Returning 1 credit transactions starting (inclusive) from 6
+2023-02-06T08:40:56.094059-0500 taler-exchange-wirewatch-17328 INFO History 
request returned with HTTP status 200
+2023-02-06T08:40:56.098369-0500 taler-exchange-wirewatch-17328 INFO Starting 
READ COMMITTED transaction `wirewatch check for incoming wire transfers`
+2023-02-06T08:40:56.099703-0500 taler-exchange-wirewatch-17328 INFO Importing 
1 transactions
+2023-02-06T08:40:56.172988-0500 taler-exchange-wirewatch-17328 INFO Notifying 
on reserve!
+2023-02-06T08:40:56.175952-0500 taler-exchange-wirewatch-17328 INFO Executing 
command `NOTIFY XKGXX4T2FGQN4E8V9FNQDZAS7VBN7X42SBZ46YDHWF2G0NMDBS620, '''
+2023-02-06T08:40:56.177194-0500 taler-exchange-wirewatch-17328 INFO PG poll 
job active
+2023-02-06T08:40:56.178760-0500 taler-exchange-wirewatch-17328 INFO PG poll 
job finishes after 0 events
+2023-02-06T08:40:56.179937-0500 taler-exchange-wirewatch-17328 INFO Imported 
transaction 6.2023-02-06T08:40:56.180945-0500 taler-exchange-wirewatch-17328 
INFO Completing shard 5-6
+2023-02-06T08:40:56.184227-0500 taler-exchange-wirewatch-17328 INFO Completed 
shard wirewatch-exchange-account-exchange (5,6] after 611 ms
+2023-02-06T08:40:56.184858-0500 taler-exchange-wirewatch-17328 INFO Committing 
wirewatch-exchange-account-exchange progress (5,6] at 6
+ (shard done)2023-02-06T08:40:56.195074-0500 taler-exchange-wirewatch-17328 
INFO Increasing batch size to 2
+2023-02-06T08:40:56.195563-0500 taler-exchange-wirewatch-17328 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:40:56.210897-0500 taler-exchange-wirewatch-17328 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:40:56.215057-0500 taler-exchange-wirewatch-17328 INFO Trying to 
claim shard (6-7]
+2023-02-06T08:40:56.227280-0500 taler-exchange-wirewatch-17328 INFO Claimed 
new shard
+2023-02-06T08:40:56.227492-0500 taler-exchange-wirewatch-17328 INFO Starting 
with shard wirewatch-exchange-account-exchange at (6,7] locked for 0 ms
+2023-02-06T08:40:56.227695-0500 taler-exchange-wirewatch-17328 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:40:56.229036-0500 taler-exchange-wirewatch-17328 INFO Requesting 
credit history staring from 6
+2023-02-06T08:40:56.229275-0500 taler-exchange-wirewatch-17328 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=6'
+2023-02-06T08:40:56.233014-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:40:56.233196-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:40:56.233326-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x5ac66b0 (0)
+2023-02-06T08:40:56.233493-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 6
+2023-02-06T08:40:56.237107-0500 taler-exchange-wirewatch-17328 INFO History 
request returned with HTTP status 204
+2023-02-06T08:40:56.237827-0500 taler-exchange-wirewatch-17328 INFO 
Transaction list drained and in test mode. Exiting
+==17328== 
+==17328== HEAP SUMMARY:
+==17328==     in use at exit: 5,293 bytes in 26 blocks
+==17328==   total heap usage: 3,844 allocs, 3,818 frees, 476,192 bytes 
allocated
+==17328== 
+==17328== LEAK SUMMARY:
+==17328==    definitely lost: 0 bytes in 0 blocks
+==17328==    indirectly lost: 0 bytes in 0 blocks
+==17328==      possibly lost: 0 bytes in 0 blocks
+==17328==    still reachable: 5,293 bytes in 26 blocks
+==17328==         suppressed: 0 bytes in 0 blocks
+==17328== Rerun with --leak-check=full to see details of leaked memory
+==17328== 
+==17328== For lists of detected and suppressed errors, rerun with: -s
+==17328== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:40:56.371358-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:56.371627-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check_bank_transfer-2r
+2023-02-06T08:40:56.371946-0500 .libs/test_merchant_api_cs-16942 INFO 
converted debit_payto (payto://x-taler-bank/localhost/62?receiver-name=62) to 
debit_account (62)
+2023-02-06T08:40:56.372420-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:56.372631-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-coin-1r
+2023-02-06T08:40:56.381889-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:56.384089-0500 
taler-exchange-httpd-17126(24TQ6JEXN1MJ7QDJ4K3AD3X038) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:56.384398-0500 
taler-exchange-httpd-17126(24TQ6JEXN1MJ7QDJ4K3AD3X038) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:56.384670-0500 
taler-exchange-httpd-17126(24TQ6JEXN1MJ7QDJ4K3AD3X038) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:56.387547-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:40:56.393470-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:40:56.393729-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:40:56.394010-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 6 ms
+2023-02-06T08:40:56.396122-0500 
taler-exchange-httpd-17126(24TQ6JEXN1MJ7QDJ4K3AD3X038) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:40:56.444812-0500 .libs/test_merchant_api_cs-16942 INFO 
Attempting to withdraw from reserve ZK46GK2K
+2023-02-06T08:40:56.449001-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:56.450747-0500 
taler-exchange-httpd-17126(H5V79RE8M3MP8RXP4S878V70CM) INFO Handling request 
(POST) for URL 
'/reserves/J1D7S6GJ1CM17JY6W4MYE8XSZEE06WR4MX5NSZ8FHZ105T6QJQ4G/withdraw'
+2023-02-06T08:40:56.451082-0500 
taler-exchange-httpd-17126(H5V79RE8M3MP8RXP4S878V70CM) INFO Handling request 
(POST) for URL 
'/reserves/J1D7S6GJ1CM17JY6W4MYE8XSZEE06WR4MX5NSZ8FHZ105T6QJQ4G/withdraw'
+2023-02-06T08:40:56.451378-0500 
taler-exchange-httpd-17126(H5V79RE8M3MP8RXP4S878V70CM) INFO Handling request 
(POST) for URL 
'/reserves/J1D7S6GJ1CM17JY6W4MYE8XSZEE06WR4MX5NSZ8FHZ105T6QJQ4G/withdraw'
+2023-02-06T08:40:56.461232-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:40:56.463369-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:40:56.463624-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:40:56.463905-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2690 µs
+2023-02-06T08:40:56.464364-0500 
taler-exchange-httpd-17126(H5V79RE8M3MP8RXP4S878V70CM) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:40:56.465554-0500 
taler-exchange-httpd-17126(H5V79RE8M3MP8RXP4S878V70CM) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:40:56.465830-0500 
taler-exchange-httpd-17126(H5V79RE8M3MP8RXP4S878V70CM) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:40:56.466102-0500 
taler-exchange-httpd-17126(H5V79RE8M3MP8RXP4S878V70CM) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:40:56.473626-0500 
taler-exchange-httpd-17126(H5V79RE8M3MP8RXP4S878V70CM) INFO Request for 
`/reserves/J1D7S6GJ1CM17JY6W4MYE8XSZEE06WR4MX5NSZ8FHZ105T6QJQ4G/withdraw' 
completed (0)
+2023-02-06T08:40:56.522553-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:56.522818-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-coin-2r
+2023-02-06T08:40:56.530554-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:56.532276-0500 
taler-exchange-httpd-17126(FPFG7X055F8TJWJTX5XMSCQQ14) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:56.532598-0500 
taler-exchange-httpd-17126(FPFG7X055F8TJWJTX5XMSCQQ14) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:56.532870-0500 
taler-exchange-httpd-17126(FPFG7X055F8TJWJTX5XMSCQQ14) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:40:56.535725-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:40:56.541152-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:40:56.541411-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:40:56.541692-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 5 ms
+2023-02-06T08:40:56.543860-0500 
taler-exchange-httpd-17126(FPFG7X055F8TJWJTX5XMSCQQ14) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:40:56.578757-0500 .libs/test_merchant_api_cs-16942 INFO 
Attempting to withdraw from reserve ZK46GK2K
+2023-02-06T08:40:56.581838-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:56.582138-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:56.584343-0500 
taler-exchange-httpd-17126(ZMEMTBXZN256C15X3BGCM2CMJC) INFO Handling request 
(POST) for URL 
'/reserves/J1D7S6GJ1CM17JY6W4MYE8XSZEE06WR4MX5NSZ8FHZ105T6QJQ4G/withdraw'
+2023-02-06T08:40:56.584679-0500 
taler-exchange-httpd-17126(ZMEMTBXZN256C15X3BGCM2CMJC) INFO Handling request 
(POST) for URL 
'/reserves/J1D7S6GJ1CM17JY6W4MYE8XSZEE06WR4MX5NSZ8FHZ105T6QJQ4G/withdraw'
+2023-02-06T08:40:56.584977-0500 
taler-exchange-httpd-17126(ZMEMTBXZN256C15X3BGCM2CMJC) INFO Handling request 
(POST) for URL 
'/reserves/J1D7S6GJ1CM17JY6W4MYE8XSZEE06WR4MX5NSZ8FHZ105T6QJQ4G/withdraw'
+2023-02-06T08:40:56.594879-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:40:56.597066-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:40:56.597320-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:40:56.597607-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2742 µs
+2023-02-06T08:40:56.598078-0500 
taler-exchange-httpd-17126(ZMEMTBXZN256C15X3BGCM2CMJC) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:40:56.599331-0500 
taler-exchange-httpd-17126(ZMEMTBXZN256C15X3BGCM2CMJC) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:40:56.599608-0500 
taler-exchange-httpd-17126(ZMEMTBXZN256C15X3BGCM2CMJC) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:40:56.599881-0500 
taler-exchange-httpd-17126(ZMEMTBXZN256C15X3BGCM2CMJC) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:40:56.604496-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:56.606805-0500 
taler-exchange-httpd-17126(ZMEMTBXZN256C15X3BGCM2CMJC) INFO Request for 
`/reserves/J1D7S6GJ1CM17JY6W4MYE8XSZEE06WR4MX5NSZ8FHZ105T6QJQ4G/withdraw' 
completed (0)
+2023-02-06T08:40:56.644729-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:56.644920-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-status-1r
+2023-02-06T08:40:56.646806-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:56.648483-0500 
taler-exchange-httpd-17126(B1NP927EW8Q4P0F8RASQK7HWZR) INFO Handling request 
(GET) for URL '/reserves/J1D7S6GJ1CM17JY6W4MYE8XSZEE06WR4MX5NSZ8FHZ105T6QJQ4G'
+2023-02-06T08:40:56.648943-0500 
taler-exchange-httpd-17126(B1NP927EW8Q4P0F8RASQK7HWZR) INFO Starting 
transaction `get reserve balance'
+2023-02-06T08:40:56.651787-0500 
taler-exchange-httpd-17126(B1NP927EW8Q4P0F8RASQK7HWZR) INFO Request for 
`/reserves/J1D7S6GJ1CM17JY6W4MYE8XSZEE06WR4MX5NSZ8FHZ105T6QJQ4G' completed (0)
+2023-02-06T08:40:56.652553-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:56.652718-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-1r
+2023-02-06T08:40:56.658503-0500 
taler-merchant-httpd-17112(07365KZTSB6YCKKPFKAV4NFKZ8) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:56.675428-0500 
taler-merchant-httpd-17112(07365KZTSB6YCKKPFKAV4NFKZ8) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:40:56.679135-0500 
taler-merchant-httpd-17112(07365KZTSB6YCKKPFKAV4NFKZ8) INFO Notifying clients 
of new order 10 at GRJQ5BC0
+2023-02-06T08:40:56.679507-0500 
taler-merchant-httpd-17112(07365KZTSB6YCKKPFKAV4NFKZ8) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000M005YG42WEDA00000000''
+2023-02-06T08:40:56.680116-0500 
taler-merchant-httpd-17112(07365KZTSB6YCKKPFKAV4NFKZ8) INFO PG poll job active
+2023-02-06T08:40:56.680452-0500 
taler-merchant-httpd-17112(07365KZTSB6YCKKPFKAV4NFKZ8) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:56.680719-0500 
taler-merchant-httpd-17112(07365KZTSB6YCKKPFKAV4NFKZ8) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T08:40:56.696108-0500 
taler-merchant-httpd-17112(07365KZTSB6YCKKPFKAV4NFKZ8) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:56.697016-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/1r/claim
+2023-02-06T08:40:56.701014-0500 
taler-merchant-httpd-17112(Z2YM0Y3ZJQGBM0R72EZXYE1XGR) INFO Handling request 
(POST) for URL '/orders/1r/claim'
+2023-02-06T08:40:56.702055-0500 
taler-merchant-httpd-17112(Z2YM0Y3ZJQGBM0R72EZXYE1XGR) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:56.719815-0500 
taler-merchant-httpd-17112(Z2YM0Y3ZJQGBM0R72EZXYE1XGR) INFO Notifying clients 
of new order 10 at GRJQ5BC0
+2023-02-06T08:40:56.720195-0500 
taler-merchant-httpd-17112(Z2YM0Y3ZJQGBM0R72EZXYE1XGR) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000M005YG42WEDA00000001''
+2023-02-06T08:40:56.720795-0500 
taler-merchant-httpd-17112(Z2YM0Y3ZJQGBM0R72EZXYE1XGR) INFO PG poll job active
+2023-02-06T08:40:56.721128-0500 
taler-merchant-httpd-17112(Z2YM0Y3ZJQGBM0R72EZXYE1XGR) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:56.721384-0500 
taler-merchant-httpd-17112(Z2YM0Y3ZJQGBM0R72EZXYE1XGR) INFO Committing merchant 
DB transaction claim order
+2023-02-06T08:40:56.748256-0500 
taler-merchant-httpd-17112(Z2YM0Y3ZJQGBM0R72EZXYE1XGR) INFO Finished handling 
request for `/orders/1r/claim' with MHD termination code 0
+2023-02-06T08:40:56.752278-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:40:56.762693-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:56.762872-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-order-wallet-refund-1-low
+2023-02-06T08:40:56.764256-0500 .libs/test_merchant_api_cs-16942 INFO Checking 
order status at 
http://localhost:8080/orders/1r?h_contract=T5K05SB6Z9YXDXPJ0FB62MVY1V3RGX71QQQAXEJ8ZT3ES83AHMAV613PEVT141HAKD378010BQ5TXANYPTNS1564QRWQ4MPQYZ7HNFG&timeout_ms=60000&refund=EUR%3A0.01
+2023-02-06T08:40:56.766233-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:56.766407-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-order-wallet-refund-1-high
+2023-02-06T08:40:56.767107-0500 .libs/test_merchant_api_cs-16942 INFO Checking 
order status at 
http://localhost:8080/orders/1r?h_contract=T5K05SB6Z9YXDXPJ0FB62MVY1V3RGX71QQQAXEJ8ZT3ES83AHMAV613PEVT141HAKD378010BQ5TXANYPTNS1564QRWQ4MPQYZ7HNFG&timeout_ms=60000&refund=EUR%3A0.2
+2023-02-06T08:40:56.767777-0500 
taler-merchant-httpd-17112(VREAY4MGMBTSGSZR00N6SYTF38) INFO Handling request 
(GET) for URL '/orders/1r'
+2023-02-06T08:40:56.768976-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:56.769150-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pay-for-refund-1r
+2023-02-06T08:40:56.770567-0500 
taler-merchant-httpd-17112(VREAY4MGMBTSGSZR00N6SYTF38) INFO Subscribing 
0x5fdf500 to refunds on 1r
+2023-02-06T08:40:56.771013-0500 
taler-merchant-httpd-17112(VREAY4MGMBTSGSZR00N6SYTF38) INFO Executing PQ 
command `LISTEN XHMEZMP1JV9MA91XX2QK1QZWHYC1P2G4F6C859XZ8AB558B72TMDG'
+2023-02-06T08:40:56.771738-0500 
taler-merchant-httpd-17112(VREAY4MGMBTSGSZR00N6SYTF38) INFO Subscribing to 
payments on 1r
+2023-02-06T08:40:56.772094-0500 
taler-merchant-httpd-17112(VREAY4MGMBTSGSZR00N6SYTF38) INFO Executing PQ 
command `LISTEN XTQP6NPRRE2TGBJA00VPD73CJA68N37YGJHPYY3AJGQ1845RD77JG'
+2023-02-06T08:40:56.785447-0500 
taler-merchant-httpd-17112(VREAY4MGMBTSGSZR00N6SYTF38) INFO Order claimed but 
unpaid, sending pay request for order 1r
+2023-02-06T08:40:56.785761-0500 
taler-merchant-httpd-17112(VREAY4MGMBTSGSZR00N6SYTF38) INFO Suspending GET 
/orders/1r
+2023-02-06T08:40:56.788441-0500 
taler-merchant-httpd-17112(MZ4C45H5F8GNAZD6J69M20C0SM) INFO Handling request 
(GET) for URL '/orders/1r'
+2023-02-06T08:40:56.789367-0500 
taler-merchant-httpd-17112(MZ4C45H5F8GNAZD6J69M20C0SM) INFO Subscribing 
0x6044f90 to refunds on 1r
+2023-02-06T08:40:56.789752-0500 
taler-merchant-httpd-17112(MZ4C45H5F8GNAZD6J69M20C0SM) INFO Subscribing to 
payments on 1r
+2023-02-06T08:40:56.804639-0500 
taler-merchant-httpd-17112(MZ4C45H5F8GNAZD6J69M20C0SM) INFO Order claimed but 
unpaid, sending pay request for order 1r
+2023-02-06T08:40:56.804923-0500 
taler-merchant-httpd-17112(MZ4C45H5F8GNAZD6J69M20C0SM) INFO Suspending GET 
/orders/1r
+2023-02-06T08:40:56.806856-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Handling request 
(POST) for URL '/orders/1r/pay'
+2023-02-06T08:40:56.821172-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Handling payment 
for order `1r' with contract hash `T5K05SB6'
+2023-02-06T08:40:56.821673-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Starting merchant 
DB transaction `run pay'
+2023-02-06T08:40:56.823235-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Rolling back 
merchant DB transaction `run pay'
+2023-02-06T08:40:56.823835-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:56.824226-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Processing payment 
with exchange http://localhost:8081/
+2023-02-06T08:40:56.824479-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Initiating batch 
deposit with 1 coins
+2023-02-06T08:40:56.848742-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:56.850959-0500 
taler-exchange-httpd-17126(5P4HEJKHAZEANA4SR3YENSSYZR) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:56.851268-0500 
taler-exchange-httpd-17126(5P4HEJKHAZEANA4SR3YENSSYZR) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:56.851550-0500 
taler-exchange-httpd-17126(5P4HEJKHAZEANA4SR3YENSSYZR) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:40:56.877741-0500 
taler-exchange-httpd-17126(5P4HEJKHAZEANA4SR3YENSSYZR) INFO Starting 
transaction `execute batch deposit'
+2023-02-06T08:40:56.900053-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:40:56.900355-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:40:56.909281-0500 
taler-exchange-httpd-17126(5P4HEJKHAZEANA4SR3YENSSYZR) INFO Request for 
`/batch-deposit' completed (0)
+2023-02-06T08:40:56.915389-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Batch deposit 
completed with status 200
+2023-02-06T08:40:56.915692-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Starting merchant 
DB transaction `batch-deposit-insert-confirmation'
+2023-02-06T08:40:56.917971-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Committing merchant 
DB transaction batch-deposit-insert-confirmation
+2023-02-06T08:40:56.928363-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Not re-checking KYC 
status at `http://localhost:8081/', as we already recently asked
+2023-02-06T08:40:56.928737-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Starting merchant 
DB transaction `run pay'
+2023-02-06T08:40:56.930846-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Subtracting total 
refunds from paid amount: EUR:0
+2023-02-06T08:40:56.931151-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Order `1r' 
(T5K05SB6) was fully paid
+2023-02-06T08:40:56.934095-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Notifying clients 
of new order 10 at GRJQ5BC0
+2023-02-06T08:40:56.934478-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000M005YG42WEDA00000003''
+2023-02-06T08:40:56.935081-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO PG poll job active
+2023-02-06T08:40:56.935415-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:56.937740-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Executing command 
`NOTIFY XXJWF6C1DCS1255RJH7GQ1EK16J8DMRSQ6K9EDKNKCP7HRVWAJPKG, '''
+2023-02-06T08:40:56.938308-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO PG poll job active
+2023-02-06T08:40:56.938661-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:56.938950-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Committing merchant 
DB transaction run pay
+2023-02-06T08:40:56.949553-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Notifying clients 
about payment of order 1r
+2023-02-06T08:40:56.949975-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Executing command 
`NOTIFY XTQP6NPRRE2TGBJA00VPD73CJA68N37YGJHPYY3AJGQ1845RD77JG, '''
+2023-02-06T08:40:56.950638-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO PG poll job active
+2023-02-06T08:40:56.951021-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Received 
notification xtqp6nprre2tgbja00vpd73cja68n37ygjhpyy3ajgq1845rd77jg with extra 
data `'
+2023-02-06T08:40:56.951303-0500 
taler-merchant-httpd-17112(MZ4C45H5F8GNAZD6J69M20C0SM) INFO Received event for 
1r with argument ``
+2023-02-06T08:40:56.951806-0500 
taler-merchant-httpd-17112(VREAY4MGMBTSGSZR00N6SYTF38) INFO Received event for 
1r with argument ``
+2023-02-06T08:40:56.952091-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:56.952353-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Notifying clients 
about session change to  for https://example.com
+2023-02-06T08:40:56.952868-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Executing command 
`NOTIFY X3V8B51YRVEPXDGPP1CBR9KC9PV8ZW936RQD4ERP25E4TRPXZKR6G, '''
+2023-02-06T08:40:56.953498-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO PG poll job active
+2023-02-06T08:40:56.953823-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:56.960077-0500 
taler-merchant-httpd-17112(GGGFS2D8Q7YF9SHMBGDARPPYP0) INFO Finished handling 
request for `/orders/1r/pay' with MHD termination code 0
+2023-02-06T08:40:56.960480-0500 .libs/test_merchant_api_cs-16942 INFO /pay 
completed with response code 200
+2023-02-06T08:40:56.966561-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:56.966750-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-payment-refund-1
+2023-02-06T08:40:56.967139-0500 .libs/test_merchant_api_cs-16942 INFO Getting 
order status from 
http://localhost:8080/private/orders/1r?transfer=NO&timeout_ms=60000
+2023-02-06T08:40:56.969106-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:56.969291-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: refund-increase-1r
+2023-02-06T08:40:56.970310-0500 
taler-merchant-httpd-17112(MMHTWFCY1REF9Y1XK0EX7TVWMG) INFO Handling request 
(GET) for URL '/private/orders/1r'
+2023-02-06T08:40:56.970911-0500 
taler-merchant-httpd-17112(MMHTWFCY1REF9Y1XK0EX7TVWMG) INFO Subscribing to 
payment triggers for 0x611da70
+2023-02-06T08:40:56.992766-0500 
taler-merchant-httpd-17112(MMHTWFCY1REF9Y1XK0EX7TVWMG) INFO Finished handling 
request for `/private/orders/1r' with MHD termination code 0
+2023-02-06T08:40:56.995532-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO Handling request 
(POST) for URL '/private/orders/1r/refund'
+2023-02-06T08:40:56.997970-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/private/orders/$ID finished with status 200.
+2023-02-06T08:40:57.002440-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO Starting merchant 
DB transaction `increase refund'
+2023-02-06T08:40:57.014605-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO Committing merchant 
DB transaction increase refund
+2023-02-06T08:40:57.028915-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO Awakening clients 
on 1r waiting for refund of no more than EUR:0.1
+2023-02-06T08:40:57.029803-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO Executing command 
`NOTIFY XHMEZMP1JV9MA91XX2QK1QZWHYC1P2G4F6C859XZ8AB558B72TMDG, '8NAN4EHG5RRG''
+2023-02-06T08:40:57.030504-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO PG poll job active
+2023-02-06T08:40:57.030894-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO Received 
notification xhmezmp1jv9ma91xx2qk1qzwhyc1p2g4f6c859xz8ab558b72tmdg with extra 
data `EUR:0.1'
+2023-02-06T08:40:57.031168-0500 
taler-merchant-httpd-17112(MZ4C45H5F8GNAZD6J69M20C0SM) INFO Received event for 
1r with argument `EUR:0.1`
+2023-02-06T08:40:57.032200-0500 
taler-merchant-httpd-17112(VREAY4MGMBTSGSZR00N6SYTF38) INFO Received event for 
1r with argument `EUR:0.1`
+2023-02-06T08:40:57.032514-0500 
taler-merchant-httpd-17112(VREAY4MGMBTSGSZR00N6SYTF38) INFO Resuming (1/1) by 
event with argument `EUR:0.1`
+2023-02-06T08:40:57.032798-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:57.049949-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO Notifying clients 
of new order 10 at GRJQ5BC0
+2023-02-06T08:40:57.050302-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000M005YG42WEDA00000007''
+2023-02-06T08:40:57.050993-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO PG poll job active
+2023-02-06T08:40:57.051303-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:57.057171-0500 
taler-merchant-httpd-17112(2T8S9ENFVTDFRV1C1NHD8GNBHW) INFO Finished handling 
request for `/private/orders/1r/refund' with MHD termination code 0
+2023-02-06T08:40:57.066126-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:57.066366-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-order-1-conclude-low
+2023-02-06T08:40:57.066603-0500 .libs/test_merchant_api_cs-16942 INFO Waiting 
on GET /orders/$ID of poll-order-wallet-refund-1-low (active)
+2023-02-06T08:40:57.077121-0500 
taler-merchant-httpd-17112(VREAY4MGMBTSGSZR00N6SYTF38) INFO Finished handling 
request for `/orders/1r' with MHD termination code 0
+2023-02-06T08:40:57.078398-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/orders/$ID finished with status 200.
+2023-02-06T08:40:57.080560-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:57.080780-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-wallet-1r
+2023-02-06T08:40:57.081480-0500 .libs/test_merchant_api_cs-16942 INFO Checking 
order status at 
http://localhost:8080/orders/1r?h_contract=T5K05SB6Z9YXDXPJ0FB62MVY1V3RGX71QQQAXEJ8ZT3ES83AHMAV613PEVT141HAKD378010BQ5TXANYPTNS1564QRWQ4MPQYZ7HNFG
+2023-02-06T08:40:57.085775-0500 
taler-merchant-httpd-17112(17YR60K01GRS5502P5TGTSJ9EG) INFO Handling request 
(GET) for URL '/orders/1r'
+2023-02-06T08:40:57.103153-0500 
taler-merchant-httpd-17112(17YR60K01GRS5502P5TGTSJ9EG) INFO Finished handling 
request for `/orders/1r' with MHD termination code 0
+2023-02-06T08:40:57.104763-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:57.105001-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: refund-increase-1r-2
+2023-02-06T08:40:57.109294-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO Handling request 
(POST) for URL '/private/orders/1r/refund'
+2023-02-06T08:40:57.113583-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO Starting merchant 
DB transaction `increase refund'
+2023-02-06T08:40:57.118176-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO Committing merchant 
DB transaction increase refund
+2023-02-06T08:40:57.127387-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO Awakening clients 
on 1r waiting for refund of no more than EUR:1
+2023-02-06T08:40:57.127789-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO Executing command 
`NOTIFY XHMEZMP1JV9MA91XX2QK1QZWHYC1P2G4F6C859XZ8AB558B72TMDG, '8NAN4EHH''
+2023-02-06T08:40:57.128444-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO PG poll job active
+2023-02-06T08:40:57.128800-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO Received 
notification xhmezmp1jv9ma91xx2qk1qzwhyc1p2g4f6c859xz8ab558b72tmdg with extra 
data `EUR:1'
+2023-02-06T08:40:57.129050-0500 
taler-merchant-httpd-17112(MZ4C45H5F8GNAZD6J69M20C0SM) INFO Received event for 
1r with argument `EUR:1`
+2023-02-06T08:40:57.129328-0500 
taler-merchant-httpd-17112(MZ4C45H5F8GNAZD6J69M20C0SM) INFO Resuming (1/1) by 
event with argument `EUR:1`
+2023-02-06T08:40:57.129587-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:40:57.144175-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO Notifying clients 
of new order 10 at GRJQ5BC0
+2023-02-06T08:40:57.144524-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000M005YG42WEDA00000007''
+2023-02-06T08:40:57.145179-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO PG poll job active
+2023-02-06T08:40:57.145486-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:57.148233-0500 
taler-merchant-httpd-17112(DMFGHBWVF4V7GMT974N6B74634) INFO Finished handling 
request for `/private/orders/1r/refund' with MHD termination code 0
+2023-02-06T08:40:57.150162-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:57.150393-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-order-1-conclude-high
+2023-02-06T08:40:57.150681-0500 .libs/test_merchant_api_cs-16942 INFO Waiting 
on GET /orders/$ID of poll-order-wallet-refund-1-high (active)
+2023-02-06T08:40:57.165351-0500 
taler-merchant-httpd-17112(MZ4C45H5F8GNAZD6J69M20C0SM) INFO Finished handling 
request for `/orders/1r' with MHD termination code 0
+2023-02-06T08:40:57.165875-0500 
taler-merchant-httpd-17112(MZ4C45H5F8GNAZD6J69M20C0SM) INFO Executing PQ 
command `UNLISTEN XHMEZMP1JV9MA91XX2QK1QZWHYC1P2G4F6C859XZ8AB558B72TMDG'
+2023-02-06T08:40:57.166426-0500 
taler-merchant-httpd-17112(MZ4C45H5F8GNAZD6J69M20C0SM) INFO Executing PQ 
command `UNLISTEN XTQP6NPRRE2TGBJA00VPD73CJA68N37YGJHPYY3AJGQ1845RD77JG'
+2023-02-06T08:40:57.166402-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/orders/$ID finished with status 200.
+2023-02-06T08:40:57.167140-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:57.167334-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-wallet-1r-2
+2023-02-06T08:40:57.168024-0500 .libs/test_merchant_api_cs-16942 INFO Checking 
order status at 
http://localhost:8080/orders/1r?h_contract=T5K05SB6Z9YXDXPJ0FB62MVY1V3RGX71QQQAXEJ8ZT3ES83AHMAV613PEVT141HAKD378010BQ5TXANYPTNS1564QRWQ4MPQYZ7HNFG
+2023-02-06T08:40:57.171562-0500 
taler-merchant-httpd-17112(6AV5TW85GK9V2YFSSEQD24A3EM) INFO Handling request 
(GET) for URL '/orders/1r'
+2023-02-06T08:40:57.187998-0500 
taler-merchant-httpd-17112(6AV5TW85GK9V2YFSSEQD24A3EM) INFO Finished handling 
request for `/orders/1r' with MHD termination code 0
+2023-02-06T08:40:57.189583-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:57.189821-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: obtain-refund-1r
+2023-02-06T08:40:57.199700-0500 
taler-merchant-httpd-17112(4P1Y0GYZE8ARYRMTRV299S09BR) INFO Handling request 
(POST) for URL '/orders/1r/refund'
+2023-02-06T08:40:57.220980-0500 
taler-merchant-httpd-17112(4P1Y0GYZE8ARYRMTRV299S09BR) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:57.222238-0500 
taler-merchant-httpd-17112(4P1Y0GYZE8ARYRMTRV299S09BR) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:57.241949-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:57.243266-0500 
taler-exchange-httpd-17126(WW5RN6GD3TDJN10FX8H79WZTN8) INFO Handling request 
(POST) for URL 
'/coins/FX54KJKASP3PACPPEA0WVFG477ADQ8H959YXDPPKEQ7MAY83P7V0/refund'
+2023-02-06T08:40:57.243508-0500 
taler-exchange-httpd-17126(WW5RN6GD3TDJN10FX8H79WZTN8) INFO Handling request 
(POST) for URL 
'/coins/FX54KJKASP3PACPPEA0WVFG477ADQ8H959YXDPPKEQ7MAY83P7V0/refund'
+2023-02-06T08:40:57.243797-0500 
taler-exchange-httpd-17126(WW5RN6GD3TDJN10FX8H79WZTN8) INFO Handling request 
(POST) for URL 
'/coins/FX54KJKASP3PACPPEA0WVFG477ADQ8H959YXDPPKEQ7MAY83P7V0/refund'
+2023-02-06T08:40:57.261713-0500 
taler-exchange-httpd-17126(WW5RN6GD3TDJN10FX8H79WZTN8) INFO Starting 
transaction `run refund'
+2023-02-06T08:40:57.277663-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:40:57.277958-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:40:57.280424-0500 
taler-exchange-httpd-17126(WW5RN6GD3TDJN10FX8H79WZTN8) INFO Request for 
`/coins/FX54KJKASP3PACPPEA0WVFG477ADQ8H959YXDPPKEQ7MAY83P7V0/refund' completed 
(0)
+2023-02-06T08:40:57.281918-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:57.283620-0500 
taler-exchange-httpd-17126(52QH63M9ZZCMVVW2Y0FNBY735C) INFO Handling request 
(POST) for URL 
'/coins/FX54KJKASP3PACPPEA0WVFG477ADQ8H959YXDPPKEQ7MAY83P7V0/refund'
+2023-02-06T08:40:57.283948-0500 
taler-exchange-httpd-17126(52QH63M9ZZCMVVW2Y0FNBY735C) INFO Handling request 
(POST) for URL 
'/coins/FX54KJKASP3PACPPEA0WVFG477ADQ8H959YXDPPKEQ7MAY83P7V0/refund'
+2023-02-06T08:40:57.284244-0500 
taler-exchange-httpd-17126(52QH63M9ZZCMVVW2Y0FNBY735C) INFO Handling request 
(POST) for URL 
'/coins/FX54KJKASP3PACPPEA0WVFG477ADQ8H959YXDPPKEQ7MAY83P7V0/refund'
+2023-02-06T08:40:57.295068-0500 
taler-merchant-httpd-17112(4P1Y0GYZE8ARYRMTRV299S09BR) INFO Executing command 
`NOTIFY X6YTCE3AFPT2K9R2S347W1BYK5DEVHJCDHJ1YZPTXZ6E02X9JSTM0, '''
+2023-02-06T08:40:57.295673-0500 
taler-merchant-httpd-17112(4P1Y0GYZE8ARYRMTRV299S09BR) INFO PG poll job active
+2023-02-06T08:40:57.295902-0500 
taler-merchant-httpd-17112(4P1Y0GYZE8ARYRMTRV299S09BR) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:57.306164-0500 
taler-exchange-httpd-17126(52QH63M9ZZCMVVW2Y0FNBY735C) INFO Starting 
transaction `run refund'
+2023-02-06T08:40:57.322175-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:40:57.322481-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:40:57.324914-0500 
taler-exchange-httpd-17126(52QH63M9ZZCMVVW2Y0FNBY735C) INFO Request for 
`/coins/FX54KJKASP3PACPPEA0WVFG477ADQ8H959YXDPPKEQ7MAY83P7V0/refund' completed 
(0)
+2023-02-06T08:40:57.349710-0500 
taler-merchant-httpd-17112(4P1Y0GYZE8ARYRMTRV299S09BR) INFO Executing command 
`NOTIFY X6YTCE3AFPT2K9R2S347W1BYK5DEVHJCDHJ1YZPTXZ6E02X9JSTM0, '''
+2023-02-06T08:40:57.350366-0500 
taler-merchant-httpd-17112(4P1Y0GYZE8ARYRMTRV299S09BR) INFO PG poll job active
+2023-02-06T08:40:57.350718-0500 
taler-merchant-httpd-17112(4P1Y0GYZE8ARYRMTRV299S09BR) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:57.364503-0500 
taler-merchant-httpd-17112(4P1Y0GYZE8ARYRMTRV299S09BR) INFO Finished handling 
request for `/orders/1r/refund' with MHD termination code 0
+2023-02-06T08:40:57.380818-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:57.381073-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-wallet-1r-3
+2023-02-06T08:40:57.381771-0500 .libs/test_merchant_api_cs-16942 INFO Checking 
order status at 
http://localhost:8080/orders/1r?h_contract=T5K05SB6Z9YXDXPJ0FB62MVY1V3RGX71QQQAXEJ8ZT3ES83AHMAV613PEVT141HAKD378010BQ5TXANYPTNS1564QRWQ4MPQYZ7HNFG
+2023-02-06T08:40:57.385773-0500 
taler-merchant-httpd-17112(3EVR17KNSH9TWDYK1GJHWFZBE4) INFO Handling request 
(GET) for URL '/orders/1r'
+2023-02-06T08:40:57.404484-0500 
taler-merchant-httpd-17112(3EVR17KNSH9TWDYK1GJHWFZBE4) INFO Finished handling 
request for `/orders/1r' with MHD termination code 0
+2023-02-06T08:40:57.406200-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:57.406435-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-merchant-1r
+2023-02-06T08:40:57.406920-0500 .libs/test_merchant_api_cs-16942 INFO Getting 
order status from http://localhost:8080/private/orders/1r?transfer=YES
+2023-02-06T08:40:57.410371-0500 
taler-merchant-httpd-17112(K91TM6YY0706DCYKF3GAFPF9S8) INFO Handling request 
(GET) for URL '/private/orders/1r'
+2023-02-06T08:40:57.426682-0500 
taler-merchant-httpd-17112(K91TM6YY0706DCYKF3GAFPF9S8) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:57.437693-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:57.440119-0500 
taler-exchange-httpd-17126(JY5PWG0GQ73Y6VBB4FQ4ZC5J50) INFO Handling request 
(GET) for URL 
'/deposits/KB97D1V89T5ST9YM71MZFC47QGN8RE18YHGFHJB93D8HM4WF485VFWSSDD15W5NCMKSNXY397J091PXHQ0RG7A37THXYX9H6ZZ7CXQ0/EH1PT88999CT0RH6AN8HYY53Y9E9Y0D3XVM76NFM45JGCPNPR340/T5K05SB6Z9YXDXPJ0FB62MVY1V3RGX71QQQAXEJ8ZT3ES83AHMAV613PEVT141HAKD378010BQ5TXANYPTNS1564QRWQ4MPQYZ7HNFG/FX54KJKASP3PACPPEA0WVFG477ADQ8H959YXDPPKEQ7MAY83P7V0'
+2023-02-06T08:40:57.446989-0500 
taler-exchange-httpd-17126(JY5PWG0GQ73Y6VBB4FQ4ZC5J50) INFO Starting 
transaction `handle deposits GET'
+2023-02-06T08:40:57.883375-0500 
taler-exchange-httpd-17126(JY5PWG0GQ73Y6VBB4FQ4ZC5J50) INFO Request for 
`/deposits/KB97D1V89T5ST9YM71MZFC47QGN8RE18YHGFHJB93D8HM4WF485VFWSSDD15W5NCMKSNXY397J091PXHQ0RG7A37THXYX9H6ZZ7CXQ0/EH1PT88999CT0RH6AN8HYY53Y9E9Y0D3XVM76NFM45JGCPNPR340/T5K05SB6Z9YXDXPJ0FB62MVY1V3RGX71QQQAXEJ8ZT3ES83AHMAV613PEVT141HAKD378010BQ5TXANYPTNS1564QRWQ4MPQYZ7HNFG/FX54KJKASP3PACPPEA0WVFG477ADQ8H959YXDPPKEQ7MAY83P7V0'
 completed (0)
+2023-02-06T08:40:57.916405-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:57.933262-0500 
taler-merchant-httpd-17112(K91TM6YY0706DCYKF3GAFPF9S8) INFO Finished handling 
request for `/private/orders/1r' with MHD termination code 0
+2023-02-06T08:40:57.942836-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/private/orders/$ID completed with status 200
+2023-02-06T08:40:57.948188-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:57.948414-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-order-merchant-1r-2
+2023-02-06T08:40:57.948868-0500 .libs/test_merchant_api_cs-16942 INFO Getting 
order status from http://localhost:8080/private/orders/1r?transfer=YES
+2023-02-06T08:40:57.953544-0500 
taler-merchant-httpd-17112(CM0YSWGGRT7HNMW5DN6MT6TH98) INFO Handling request 
(GET) for URL '/private/orders/1r'
+2023-02-06T08:40:57.955292-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:40:57.970883-0500 
taler-merchant-httpd-17112(CM0YSWGGRT7HNMW5DN6MT6TH98) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:40:57.982016-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:40:57.984424-0500 
taler-exchange-httpd-17126(Y0R63CS80C7Y34EAQAYAME0PWC) INFO Handling request 
(GET) for URL 
'/deposits/KB97D1V89T5ST9YM71MZFC47QGN8RE18YHGFHJB93D8HM4WF485VFWSSDD15W5NCMKSNXY397J091PXHQ0RG7A37THXYX9H6ZZ7CXQ0/EH1PT88999CT0RH6AN8HYY53Y9E9Y0D3XVM76NFM45JGCPNPR340/T5K05SB6Z9YXDXPJ0FB62MVY1V3RGX71QQQAXEJ8ZT3ES83AHMAV613PEVT141HAKD378010BQ5TXANYPTNS1564QRWQ4MPQYZ7HNFG/FX54KJKASP3PACPPEA0WVFG477ADQ8H959YXDPPKEQ7MAY83P7V0'
+2023-02-06T08:40:57.991333-0500 
taler-exchange-httpd-17126(Y0R63CS80C7Y34EAQAYAME0PWC) INFO Starting 
transaction `handle deposits GET'
+2023-02-06T08:40:58.413382-0500 
taler-exchange-httpd-17126(Y0R63CS80C7Y34EAQAYAME0PWC) INFO Request for 
`/deposits/KB97D1V89T5ST9YM71MZFC47QGN8RE18YHGFHJB93D8HM4WF485VFWSSDD15W5NCMKSNXY397J091PXHQ0RG7A37THXYX9H6ZZ7CXQ0/EH1PT88999CT0RH6AN8HYY53Y9E9Y0D3XVM76NFM45JGCPNPR340/T5K05SB6Z9YXDXPJ0FB62MVY1V3RGX71QQQAXEJ8ZT3ES83AHMAV613PEVT141HAKD378010BQ5TXANYPTNS1564QRWQ4MPQYZ7HNFG/FX54KJKASP3PACPPEA0WVFG477ADQ8H959YXDPPKEQ7MAY83P7V0'
 completed (0)
+2023-02-06T08:40:58.452836-0500 
taler-merchant-httpd-17112(CM0YSWGGRT7HNMW5DN6MT6TH98) INFO Finished handling 
request for `/private/orders/1r' with MHD termination code 0
+2023-02-06T08:40:58.460674-0500 .libs/test_merchant_api_cs-16942 INFO GET 
/private/orders/$ID completed with status 200
+2023-02-06T08:40:58.463420-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:58.463639-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: poll-payment-refund-conclude-1
+2023-02-06T08:40:58.464016-0500 .libs/test_merchant_api_cs-16942 INFO Waiting 
on GET /private/orders/$ID of poll-payment-refund-1 (finished)
+2023-02-06T08:40:58.464420-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:58.464626-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-not-to-be-paid
+2023-02-06T08:40:58.472910-0500 
taler-merchant-httpd-17112(CJP1YSRRSY1RBGP6HPMZ6EDA00) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:40:58.489744-0500 
taler-merchant-httpd-17112(CJP1YSRRSY1RBGP6HPMZ6EDA00) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:40:58.493583-0500 
taler-merchant-httpd-17112(CJP1YSRRSY1RBGP6HPMZ6EDA00) INFO Notifying clients 
of new order 11 at GRJQ5BC0
+2023-02-06T08:40:58.493954-0500 
taler-merchant-httpd-17112(CJP1YSRRSY1RBGP6HPMZ6EDA00) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000P005YG42WP1EG0000000''
+2023-02-06T08:40:58.494534-0500 
taler-merchant-httpd-17112(CJP1YSRRSY1RBGP6HPMZ6EDA00) INFO PG poll job active
+2023-02-06T08:40:58.494869-0500 
taler-merchant-httpd-17112(CJP1YSRRSY1RBGP6HPMZ6EDA00) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:58.495121-0500 
taler-merchant-httpd-17112(CJP1YSRRSY1RBGP6HPMZ6EDA00) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T08:40:58.506512-0500 
taler-merchant-httpd-17112(CJP1YSRRSY1RBGP6HPMZ6EDA00) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:40:58.508101-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/1-unpaid/claim
+2023-02-06T08:40:58.515233-0500 
taler-merchant-httpd-17112(AXNNBAYW2R3D5WXT2BCC13W5YM) INFO Handling request 
(POST) for URL '/orders/1-unpaid/claim'
+2023-02-06T08:40:58.516167-0500 
taler-merchant-httpd-17112(AXNNBAYW2R3D5WXT2BCC13W5YM) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:40:58.533616-0500 
taler-merchant-httpd-17112(AXNNBAYW2R3D5WXT2BCC13W5YM) INFO Notifying clients 
of new order 11 at GRJQ5BC0
+2023-02-06T08:40:58.533990-0500 
taler-merchant-httpd-17112(AXNNBAYW2R3D5WXT2BCC13W5YM) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000P005YG42WP1EG0000001''
+2023-02-06T08:40:58.534594-0500 
taler-merchant-httpd-17112(AXNNBAYW2R3D5WXT2BCC13W5YM) INFO PG poll job active
+2023-02-06T08:40:58.534927-0500 
taler-merchant-httpd-17112(AXNNBAYW2R3D5WXT2BCC13W5YM) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:40:58.535181-0500 
taler-merchant-httpd-17112(AXNNBAYW2R3D5WXT2BCC13W5YM) INFO Committing merchant 
DB transaction claim order
+2023-02-06T08:40:58.558301-0500 
taler-merchant-httpd-17112(AXNNBAYW2R3D5WXT2BCC13W5YM) INFO Finished handling 
request for `/orders/1-unpaid/claim' with MHD termination code 0
+2023-02-06T08:40:58.564104-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:40:58.577749-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:58.577975-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: refund-increase-unpaid-proposal
+2023-02-06T08:40:58.584714-0500 
taler-merchant-httpd-17112(9XPMPRTEAZ374GT09WBDKS6DCC) INFO Handling request 
(POST) for URL '/private/orders/1-unpaid/refund'
+2023-02-06T08:40:58.589416-0500 
taler-merchant-httpd-17112(9XPMPRTEAZ374GT09WBDKS6DCC) INFO Starting merchant 
DB transaction `increase refund'
+2023-02-06T08:40:58.591909-0500 
taler-merchant-httpd-17112(9XPMPRTEAZ374GT09WBDKS6DCC) WARNING The refund of 
EUR:0.1 is bigger than the order's value
+2023-02-06T08:40:58.592598-0500 
taler-merchant-httpd-17112(9XPMPRTEAZ374GT09WBDKS6DCC) INFO Rolling back 
merchant DB transaction `increase refund'
+2023-02-06T08:40:58.595474-0500 
taler-merchant-httpd-17112(9XPMPRTEAZ374GT09WBDKS6DCC) INFO Finished handling 
request for `/private/orders/1-unpaid/refund' with MHD termination code 0
+2023-02-06T08:40:58.599051-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:58.599299-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: refund-increase-nonexistent-proposal
+2023-02-06T08:40:58.605458-0500 
taler-merchant-httpd-17112(HHT3E5TPSPJWF6AMTNBGV64ZC0) INFO Handling request 
(POST) for URL '/private/orders/non-existent-id/refund'
+2023-02-06T08:40:58.609195-0500 
taler-merchant-httpd-17112(HHT3E5TPSPJWF6AMTNBGV64ZC0) INFO Finished handling 
request for `/private/orders/non-existent-id/refund' with MHD termination code 0
+2023-02-06T08:40:58.609954-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:58.611928-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:58.612262-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-reserve-unincreased-refund
+2023-02-06T08:40:58.615759-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting administrative transaction at 
`http://localhost:8082/2/admin/add-incoming' for reserve DT15GTPN
+2023-02-06T08:40:58.620890-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:58.621138-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:58.621394-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:58.621615-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:58.621838-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:40:58.622058-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:40:58.623145-0500 .libs/test_merchant_api_cs-16942 INFO 
Receiving incoming wire transfer: 62->2, subject: DT15GTPN, amount: EUR:5.01
+2023-02-06T08:40:58.623707-0500 .libs/test_merchant_api_cs-16942 INFO Making 
transfer from 62 to 2 over EUR:5.01 and subject DT15GTPN at row 7
+2023-02-06T08:40:58.626611-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:40:58.626931-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: wirewatch-unincreased-refund
+2023-02-06T08:40:58.635131-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+==17338== Memcheck, a memory error detector
+==17338== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17338== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17338== Command: /home/priscilla/install/bin/taler-exchange-wirewatch -c 
test_merchant_api-cs.conf -S 1 -w 0 -t -L DEBUG
+==17338== 
+2023-02-06T08:40:59.957284-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:40:59.981048-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:00.162496-0500 taler-exchange-wirewatch-17338 INFO Change in 
PQ event FD to -1
+2023-02-06T08:41:00.208419-0500 taler-exchange-wirewatch-17338 INFO New poll 
FD is -1
+2023-02-06T08:41:00.349450-0500 taler-exchange-wirewatch-17338 INFO Change in 
PQ event FD to 8
+2023-02-06T08:41:00.349723-0500 taler-exchange-wirewatch-17338 INFO New poll 
FD is 8
+2023-02-06T08:41:00.374001-0500 taler-exchange-wirewatch-17338 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:41:00.376710-0500 taler-exchange-wirewatch-17338 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:41:00.418156-0500 taler-exchange-wirewatch-17338 INFO Claimed 
new shard
+2023-02-06T08:41:00.419911-0500 taler-exchange-wirewatch-17338 INFO Starting 
with shard wirewatch-exchange-account-exchange at (6,7] locked for 0 ms
+2023-02-06T08:41:00.420767-0500 taler-exchange-wirewatch-17338 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:41:00.422137-0500 taler-exchange-wirewatch-17338 INFO Requesting 
credit history staring from 6
+2023-02-06T08:41:00.428439-0500 taler-exchange-wirewatch-17338 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=6'
+2023-02-06T08:41:00.637715-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:00.661082-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:00.784793-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:41:00.785026-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:41:00.785198-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x59c2f30 (0)
+2023-02-06T08:41:00.785403-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 6
+2023-02-06T08:41:00.785661-0500 .libs/test_merchant_api_cs-16942 INFO 
Returning 1 credit transactions starting (inclusive) from 7
+2023-02-06T08:41:00.896753-0500 taler-exchange-wirewatch-17338 INFO History 
request returned with HTTP status 200
+2023-02-06T08:41:00.900008-0500 taler-exchange-wirewatch-17338 INFO Starting 
READ COMMITTED transaction `wirewatch check for incoming wire transfers`
+2023-02-06T08:41:00.901371-0500 taler-exchange-wirewatch-17338 INFO Importing 
1 transactions
+2023-02-06T08:41:00.975442-0500 taler-exchange-wirewatch-17338 INFO Notifying 
on reserve!
+2023-02-06T08:41:00.978383-0500 taler-exchange-wirewatch-17338 INFO Executing 
command `NOTIFY XX37F38VYY70SC5QK44V7VAF799KXJ0AEWDV1R9G1NFMA1FASE9V0, '''
+2023-02-06T08:41:00.979755-0500 taler-exchange-wirewatch-17338 INFO PG poll 
job active
+2023-02-06T08:41:00.981294-0500 taler-exchange-wirewatch-17338 INFO PG poll 
job finishes after 0 events
+2023-02-06T08:41:00.982589-0500 taler-exchange-wirewatch-17338 INFO Imported 
transaction 7.2023-02-06T08:41:00.983599-0500 taler-exchange-wirewatch-17338 
INFO Completing shard 6-7
+2023-02-06T08:41:00.987010-0500 taler-exchange-wirewatch-17338 INFO Completed 
shard wirewatch-exchange-account-exchange (6,7] after 610 ms
+2023-02-06T08:41:00.987641-0500 taler-exchange-wirewatch-17338 INFO Committing 
wirewatch-exchange-account-exchange progress (6,7] at 7
+ (shard done)2023-02-06T08:41:00.995352-0500 taler-exchange-wirewatch-17338 
INFO Increasing batch size to 2
+2023-02-06T08:41:00.995840-0500 taler-exchange-wirewatch-17338 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:41:01.012209-0500 taler-exchange-wirewatch-17338 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:41:01.017520-0500 taler-exchange-wirewatch-17338 INFO Trying to 
claim shard (7-8]
+2023-02-06T08:41:01.027493-0500 taler-exchange-wirewatch-17338 INFO Claimed 
new shard
+2023-02-06T08:41:01.027708-0500 taler-exchange-wirewatch-17338 INFO Starting 
with shard wirewatch-exchange-account-exchange at (7,8] locked for 0 ms
+2023-02-06T08:41:01.027924-0500 taler-exchange-wirewatch-17338 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:41:01.029268-0500 taler-exchange-wirewatch-17338 INFO Requesting 
credit history staring from 7
+2023-02-06T08:41:01.029547-0500 taler-exchange-wirewatch-17338 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=7'
+2023-02-06T08:41:01.033399-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:41:01.033582-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:41:01.033717-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x5d59810 (0)
+2023-02-06T08:41:01.033889-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 7
+2023-02-06T08:41:01.037585-0500 taler-exchange-wirewatch-17338 INFO History 
request returned with HTTP status 204
+2023-02-06T08:41:01.038306-0500 taler-exchange-wirewatch-17338 INFO 
Transaction list drained and in test mode. Exiting
+==17338== 
+==17338== HEAP SUMMARY:
+==17338==     in use at exit: 5,293 bytes in 26 blocks
+==17338==   total heap usage: 3,844 allocs, 3,818 frees, 476,190 bytes 
allocated
+==17338== 
+==17338== LEAK SUMMARY:
+==17338==    definitely lost: 0 bytes in 0 blocks
+==17338==    indirectly lost: 0 bytes in 0 blocks
+==17338==      possibly lost: 0 bytes in 0 blocks
+==17338==    still reachable: 5,293 bytes in 26 blocks
+==17338==         suppressed: 0 bytes in 0 blocks
+==17338== Rerun with --leak-check=full to see details of leaked memory
+==17338== 
+==17338== For lists of detected and suppressed errors, rerun with: -s
+==17338== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:41:01.173611-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:41:01.173884-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check_bank_transfer-unincreased-refund
+2023-02-06T08:41:01.174214-0500 .libs/test_merchant_api_cs-16942 INFO 
converted debit_payto (payto://x-taler-bank/localhost/62?receiver-name=62) to 
debit_account (62)
+2023-02-06T08:41:01.174693-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:41:01.174906-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: withdraw-coin-unincreased-refund
+2023-02-06T08:41:01.186201-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:41:01.187570-0500 
taler-exchange-httpd-17126(8KKPPCQ1Y9B9M890KZXWPGT4Q8) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:01.187752-0500 
taler-exchange-httpd-17126(8KKPPCQ1Y9B9M890KZXWPGT4Q8) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:01.187909-0500 
taler-exchange-httpd-17126(8KKPPCQ1Y9B9M890KZXWPGT4Q8) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:01.189712-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:41:01.195707-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:41:01.195967-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:41:01.196247-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 6 ms
+2023-02-06T08:41:01.198249-0500 
taler-exchange-httpd-17126(8KKPPCQ1Y9B9M890KZXWPGT4Q8) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:41:01.246470-0500 .libs/test_merchant_api_cs-16942 INFO 
Attempting to withdraw from reserve DT15GTPN
+2023-02-06T08:41:01.252524-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:41:01.253518-0500 
taler-exchange-httpd-17126(JTMWMMXG0ZGZY7T4NK94VMVFVW) INFO Handling request 
(POST) for URL 
'/reserves/0CG9G9GE18F6NDCTEAFV1EVEPFHACMAZ6MEB9HYDJ396GNT5GES0/withdraw'
+2023-02-06T08:41:01.253712-0500 
taler-exchange-httpd-17126(JTMWMMXG0ZGZY7T4NK94VMVFVW) INFO Handling request 
(POST) for URL 
'/reserves/0CG9G9GE18F6NDCTEAFV1EVEPFHACMAZ6MEB9HYDJ396GNT5GES0/withdraw'
+2023-02-06T08:41:01.253895-0500 
taler-exchange-httpd-17126(JTMWMMXG0ZGZY7T4NK94VMVFVW) INFO Handling request 
(POST) for URL 
'/reserves/0CG9G9GE18F6NDCTEAFV1EVEPFHACMAZ6MEB9HYDJ396GNT5GES0/withdraw'
+2023-02-06T08:41:01.263493-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:41:01.265620-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:41:01.265878-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:41:01.266161-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2685 µs
+2023-02-06T08:41:01.266673-0500 
taler-exchange-httpd-17126(JTMWMMXG0ZGZY7T4NK94VMVFVW) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:41:01.267899-0500 
taler-exchange-httpd-17126(JTMWMMXG0ZGZY7T4NK94VMVFVW) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:41:01.268199-0500 
taler-exchange-httpd-17126(JTMWMMXG0ZGZY7T4NK94VMVFVW) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:41:01.268474-0500 
taler-exchange-httpd-17126(JTMWMMXG0ZGZY7T4NK94VMVFVW) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:41:01.275387-0500 
taler-exchange-httpd-17126(JTMWMMXG0ZGZY7T4NK94VMVFVW) INFO Request for 
`/reserves/0CG9G9GE18F6NDCTEAFV1EVEPFHACMAZ6MEB9HYDJ396GNT5GES0/withdraw' 
completed (0)
+2023-02-06T08:41:01.317071-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:41:01.317285-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-proposal-unincreased-refund
+2023-02-06T08:41:01.325805-0500 
taler-merchant-httpd-17112(RNV2PBRYYCSJJEN9RD9S0CETAG) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T08:41:01.342941-0500 
taler-merchant-httpd-17112(RNV2PBRYYCSJJEN9RD9S0CETAG) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:41:01.347000-0500 
taler-merchant-httpd-17112(RNV2PBRYYCSJJEN9RD9S0CETAG) INFO Notifying clients 
of new order 12 at GRJQ5BC0
+2023-02-06T08:41:01.347411-0500 
taler-merchant-httpd-17112(RNV2PBRYYCSJJEN9RD9S0CETAG) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000R005YG42X1FN80000000''
+2023-02-06T08:41:01.348002-0500 
taler-merchant-httpd-17112(RNV2PBRYYCSJJEN9RD9S0CETAG) INFO PG poll job active
+2023-02-06T08:41:01.348372-0500 
taler-merchant-httpd-17112(RNV2PBRYYCSJJEN9RD9S0CETAG) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:41:01.348656-0500 
taler-merchant-httpd-17112(RNV2PBRYYCSJJEN9RD9S0CETAG) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T08:41:01.362326-0500 
taler-merchant-httpd-17112(RNV2PBRYYCSJJEN9RD9S0CETAG) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T08:41:01.363369-0500 .libs/test_merchant_api_cs-16942 INFO Claiming 
order at http://localhost:8080/orders/unincreased-proposal/claim
+2023-02-06T08:41:01.367822-0500 
taler-merchant-httpd-17112(70FZN85MKMBTJ1H6AD11PN0C2W) INFO Handling request 
(POST) for URL '/orders/unincreased-proposal/claim'
+2023-02-06T08:41:01.368815-0500 
taler-merchant-httpd-17112(70FZN85MKMBTJ1H6AD11PN0C2W) INFO Starting merchant 
DB transaction `claim order'
+2023-02-06T08:41:01.386107-0500 
taler-merchant-httpd-17112(70FZN85MKMBTJ1H6AD11PN0C2W) INFO Notifying clients 
of new order 12 at GRJQ5BC0
+2023-02-06T08:41:01.386498-0500 
taler-merchant-httpd-17112(70FZN85MKMBTJ1H6AD11PN0C2W) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000R005YG42X1FN80000001''
+2023-02-06T08:41:01.387098-0500 
taler-merchant-httpd-17112(70FZN85MKMBTJ1H6AD11PN0C2W) INFO PG poll job active
+2023-02-06T08:41:01.387429-0500 
taler-merchant-httpd-17112(70FZN85MKMBTJ1H6AD11PN0C2W) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:41:01.387683-0500 
taler-merchant-httpd-17112(70FZN85MKMBTJ1H6AD11PN0C2W) INFO Committing merchant 
DB transaction claim order
+2023-02-06T08:41:01.414368-0500 
taler-merchant-httpd-17112(70FZN85MKMBTJ1H6AD11PN0C2W) INFO Finished handling 
request for `/orders/unincreased-proposal/claim' with MHD termination code 0
+2023-02-06T08:41:01.419177-0500 .libs/test_merchant_api_cs-16942 ERROR Order 
claimed with status 200
+2023-02-06T08:41:01.431188-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:41:01.431396-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pay-unincreased-proposal
+2023-02-06T08:41:01.445424-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Handling request 
(POST) for URL '/orders/unincreased-proposal/pay'
+2023-02-06T08:41:01.461342-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Handling payment 
for order `unincreased-proposal' with contract hash `TR9CRG66'
+2023-02-06T08:41:01.461880-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Starting merchant 
DB transaction `run pay'
+2023-02-06T08:41:01.463477-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Rolling back 
merchant DB transaction `run pay'
+2023-02-06T08:41:01.464128-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:41:01.464581-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Processing payment 
with exchange http://localhost:8081/
+2023-02-06T08:41:01.464877-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Initiating batch 
deposit with 1 coins
+2023-02-06T08:41:01.493291-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:41:01.495047-0500 
taler-exchange-httpd-17126(CRA0WCCZCV4KZARYM4XHQ3694W) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:41:01.495356-0500 
taler-exchange-httpd-17126(CRA0WCCZCV4KZARYM4XHQ3694W) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:41:01.495639-0500 
taler-exchange-httpd-17126(CRA0WCCZCV4KZARYM4XHQ3694W) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T08:41:01.522903-0500 
taler-exchange-httpd-17126(CRA0WCCZCV4KZARYM4XHQ3694W) INFO Starting 
transaction `execute batch deposit'
+2023-02-06T08:41:01.544727-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of type 17 and length 104
+2023-02-06T08:41:01.545024-0500 taler-exchange-secmod-eddsa-17123 INFO Sending 
message of length 104
+2023-02-06T08:41:01.549341-0500 
taler-exchange-httpd-17126(CRA0WCCZCV4KZARYM4XHQ3694W) INFO Request for 
`/batch-deposit' completed (0)
+2023-02-06T08:41:01.556232-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Batch deposit 
completed with status 200
+2023-02-06T08:41:01.556582-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Starting merchant 
DB transaction `batch-deposit-insert-confirmation'
+2023-02-06T08:41:01.558974-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Committing merchant 
DB transaction batch-deposit-insert-confirmation
+2023-02-06T08:41:01.573056-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Not re-checking KYC 
status at `http://localhost:8081/', as we already recently asked
+2023-02-06T08:41:01.573415-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Starting merchant 
DB transaction `run pay'
+2023-02-06T08:41:01.575428-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Subtracting total 
refunds from paid amount: EUR:0
+2023-02-06T08:41:01.575725-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Order 
`unincreased-proposal' (TR9CRG66) was fully paid
+2023-02-06T08:41:01.578909-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Notifying clients 
of new order 12 at GRJQ5BC0
+2023-02-06T08:41:01.579278-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000R005YG42X1FN80000003''
+2023-02-06T08:41:01.579877-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO PG poll job active
+2023-02-06T08:41:01.580209-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:41:01.582575-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Executing command 
`NOTIFY XXJWF6C1DCS1255RJH7GQ1EK16J8DMRSQ6K9EDKNKCP7HRVWAJPKG, '''
+2023-02-06T08:41:01.583202-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO PG poll job active
+2023-02-06T08:41:01.583536-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:41:01.583826-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Committing merchant 
DB transaction run pay
+2023-02-06T08:41:01.594209-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Notifying clients 
about payment of order unincreased-proposal
+2023-02-06T08:41:01.594645-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Executing command 
`NOTIFY X5AEZH2GZNPRMHG7AE2SNS5SS9M6X14T6N1BYDM1JFTPDQ79Y5T0G, '''
+2023-02-06T08:41:01.595315-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO PG poll job active
+2023-02-06T08:41:01.595646-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:41:01.595910-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Notifying clients 
about session change to  for https://example.com
+2023-02-06T08:41:01.596425-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Executing command 
`NOTIFY X3V8B51YRVEPXDGPP1CBR9KC9PV8ZW936RQD4ERP25E4TRPXZKR6G, '''
+2023-02-06T08:41:01.597085-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO PG poll job active
+2023-02-06T08:41:01.597417-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:41:01.603611-0500 
taler-merchant-httpd-17112(RVJHCX10QRH428DKJRJR0HPW50) INFO Finished handling 
request for `/orders/unincreased-proposal/pay' with MHD termination code 0
+2023-02-06T08:41:01.604147-0500 .libs/test_merchant_api_cs-16942 INFO /pay 
completed with response code 200
+2023-02-06T08:41:01.610779-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:41:01.611000-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: run-aggregator-unincreased-refund-aggregator
+==17345== Memcheck, a memory error detector
+==17345== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17345== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17345== Command: /home/priscilla/install/bin/taler-exchange-aggregator -c 
test_merchant_api-cs.conf -L INFO -t -y
+==17345== 
+2023-02-06T08:41:01.982545-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:02.005073-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:02.662549-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:02.684877-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:03.130784-0500 taler-exchange-aggregator-17345 INFO Change in 
PQ event FD to -1
+2023-02-06T08:41:03.176517-0500 taler-exchange-aggregator-17345 INFO New poll 
FD is -1
+2023-02-06T08:41:03.313614-0500 taler-exchange-aggregator-17345 INFO Change in 
PQ event FD to 8
+2023-02-06T08:41:03.313871-0500 taler-exchange-aggregator-17345 INFO New poll 
FD is 8
+2023-02-06T08:41:03.376089-0500 taler-exchange-aggregator-17345 INFO Draining 
KYC alerts
+2023-02-06T08:41:03.378834-0500 taler-exchange-aggregator-17345 INFO Starting 
transaction `handle kyc alerts'
+2023-02-06T08:41:03.405832-0500 taler-exchange-aggregator-17345 INFO Running 
aggregation shard
+2023-02-06T08:41:03.407040-0500 taler-exchange-aggregator-17345 INFO Starting 
transaction `begin_revolving_shard'
+2023-02-06T08:41:03.596004-0500 taler-exchange-aggregator-17345 INFO Starting 
shard [0:2147483647]!
+2023-02-06T08:41:03.597437-0500 taler-exchange-aggregator-17345 INFO Checking 
for ready deposits to aggregate
+2023-02-06T08:41:03.601260-0500 taler-exchange-aggregator-17345 INFO Starting 
READ COMMITTED DEFERRED transaction `deferred wire out'
+2023-02-06T08:41:03.611268-0500 taler-exchange-aggregator-17345 INFO Finding 
ready deposits by deadline Mon Feb 06 08:41:03 2023 (1675690863000000)
+2023-02-06T08:41:03.620326-0500 taler-exchange-aggregator-17345 INFO Found 
ready deposit!
+2023-02-06T08:41:03.845403-0500 taler-exchange-aggregator-17345 INFO Returning 
amount EUR:8.98 in KYC check
+2023-02-06T08:41:03.847427-0500 taler-exchange-aggregator-17345 INFO KYC check 
with new amount EUR:8.98
+2023-02-06T08:41:03.849141-0500 taler-exchange-aggregator-17345 INFO KYC 
check: new total is EUR:8.98
+2023-02-06T08:41:03.852378-0500 taler-exchange-aggregator-17345 INFO Preparing 
wire transfer of EUR:8.97 to GRJQ5BC0
+2023-02-06T08:41:03.956604-0500 taler-exchange-aggregator-17345 INFO 
Committing aggregation result
+2023-02-06T08:41:03.962071-0500 taler-exchange-aggregator-17345 INFO Commit 
complete, going again
+2023-02-06T08:41:03.962922-0500 taler-exchange-aggregator-17345 INFO Checking 
for ready deposits to aggregate
+2023-02-06T08:41:03.964038-0500 taler-exchange-aggregator-17345 INFO Starting 
READ COMMITTED DEFERRED transaction `deferred wire out'
+2023-02-06T08:41:03.964476-0500 taler-exchange-aggregator-17345 INFO Finding 
ready deposits by deadline Mon Feb 06 08:41:03 2023 (1675690863000000)
+2023-02-06T08:41:03.970084-0500 taler-exchange-aggregator-17345 INFO Completed 
shard [0,2147483647] after 965 ms with 1 deposits
+2023-02-06T08:41:03.971922-0500 taler-exchange-aggregator-17345 INFO Releasing 
revolving shard aggregator 0-2147483647
+2023-02-06T08:41:03.975443-0500 taler-exchange-aggregator-17345 INFO Draining 
KYC alerts
+2023-02-06T08:41:03.975840-0500 taler-exchange-aggregator-17345 INFO Starting 
transaction `handle kyc alerts'
+2023-02-06T08:41:03.977648-0500 taler-exchange-aggregator-17345 INFO Running 
aggregation shard
+2023-02-06T08:41:03.978055-0500 taler-exchange-aggregator-17345 INFO Starting 
transaction `begin_revolving_shard'
+2023-02-06T08:41:04.006629-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:04.029995-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:04.036657-0500 taler-exchange-aggregator-17345 INFO Starting 
shard [0:2147483647]!
+2023-02-06T08:41:04.038947-0500 taler-exchange-aggregator-17345 INFO Checking 
for ready deposits to aggregate
+2023-02-06T08:41:04.039945-0500 taler-exchange-aggregator-17345 INFO Starting 
READ COMMITTED DEFERRED transaction `deferred wire out'
+2023-02-06T08:41:04.040291-0500 taler-exchange-aggregator-17345 INFO Finding 
ready deposits by deadline Mon Feb 06 08:41:04 2023 (1675690864000000)
+2023-02-06T08:41:04.041847-0500 taler-exchange-aggregator-17345 INFO Completed 
shard [0,2147483647] after 1041 ms with 0 deposits
+2023-02-06T08:41:04.042216-0500 taler-exchange-aggregator-17345 INFO Releasing 
revolving shard aggregator 0-2147483647
+2023-02-06T08:41:04.049761-0500 taler-exchange-aggregator-17345 INFO Running 
shutdown
+==17345== 
+==17345== HEAP SUMMARY:
+==17345==     in use at exit: 5,318 bytes in 27 blocks
+==17345==   total heap usage: 3,941 allocs, 3,914 frees, 540,543 bytes 
allocated
+==17345== 
+==17345== LEAK SUMMARY:
+==17345==    definitely lost: 0 bytes in 0 blocks
+==17345==    indirectly lost: 0 bytes in 0 blocks
+==17345==      possibly lost: 0 bytes in 0 blocks
+==17345==    still reachable: 5,318 bytes in 27 blocks
+==17345==         suppressed: 0 bytes in 0 blocks
+==17345== Rerun with --leak-check=full to see details of leaked memory
+==17345== 
+==17345== For lists of detected and suppressed errors, rerun with: -s
+==17345== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:41:04.215468-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:41:04.215737-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: run-aggregator-unincreased-refund-transfer
+==17350== Memcheck, a memory error detector
+==17350== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17350== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17350== Command: /home/priscilla/install/bin/taler-exchange-transfer -c 
test_merchant_api-cs.conf -L INFO -S 1 -w 0 -t
+==17350== 
+2023-02-06T08:41:04.687266-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:04.709524-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:05.727291-0500 taler-exchange-transfer-17350 INFO Change in 
PQ event FD to -1
+2023-02-06T08:41:05.773023-0500 taler-exchange-transfer-17350 INFO New poll FD 
is -1
+2023-02-06T08:41:05.909297-0500 taler-exchange-transfer-17350 INFO Change in 
PQ event FD to 8
+2023-02-06T08:41:05.909550-0500 taler-exchange-transfer-17350 INFO New poll FD 
is 8
+2023-02-06T08:41:05.933376-0500 taler-exchange-transfer-17350 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:41:05.973820-0500 taler-exchange-transfer-17350 INFO Claimed new 
shard
+2023-02-06T08:41:05.975510-0500 taler-exchange-transfer-17350 INFO Starting 
with shard [3,4)
+2023-02-06T08:41:05.976881-0500 taler-exchange-transfer-17350 INFO Checking 
for 1 pending wire transfers [3-...)
+2023-02-06T08:41:05.977758-0500 taler-exchange-transfer-17350 INFO Starting 
READ COMMITTED transaction `aggregator run transfer`
+2023-02-06T08:41:05.985792-0500 taler-exchange-transfer-17350 INFO Starting 
wire transfer 3
+2023-02-06T08:41:06.032339-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:06.054806-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:06.446090-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/transfer'
+2023-02-06T08:41:06.446317-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/transfer' for account `2'
+2023-02-06T08:41:06.446522-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/transfer'
+2023-02-06T08:41:06.446687-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/transfer' for account `2'
+2023-02-06T08:41:06.446844-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/transfer'
+2023-02-06T08:41:06.447008-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/transfer' for account `2'
+2023-02-06T08:41:06.448296-0500 .libs/test_merchant_api_cs-16942 INFO Making 
transfer 8 from 2 to 3 over EUR:8.97 and subject JPYXWSHX; for exchange: 
http://localhost:8081/
+2023-02-06T08:41:06.448557-0500 .libs/test_merchant_api_cs-16942 INFO 
Receiving incoming wire transfer: 2->3, subject: JPYXWSHX, amount: EUR:8.97, 
from http://localhost:8081/
+2023-02-06T08:41:06.518098-0500 taler-exchange-transfer-17350 INFO Wire 
transfer 3 completed successfully
+2023-02-06T08:41:06.528309-0500 taler-exchange-transfer-17350 INFO Batch 
complete
+2023-02-06T08:41:06.546946-0500 taler-exchange-transfer-17350 INFO Shard [3,3) 
completed
+2023-02-06T08:41:06.547937-0500 taler-exchange-transfer-17350 INFO Completing 
shard 3-4
+2023-02-06T08:41:06.563243-0500 taler-exchange-transfer-17350 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:41:06.567725-0500 taler-exchange-transfer-17350 INFO Trying to 
claim shard (4-5]
+2023-02-06T08:41:06.583112-0500 taler-exchange-transfer-17350 INFO Claimed new 
shard
+2023-02-06T08:41:06.583352-0500 taler-exchange-transfer-17350 INFO Starting 
with shard [4,5)
+2023-02-06T08:41:06.583642-0500 taler-exchange-transfer-17350 INFO Checking 
for 1 pending wire transfers [4-...)
+2023-02-06T08:41:06.583931-0500 taler-exchange-transfer-17350 INFO Starting 
READ COMMITTED transaction `aggregator run transfer`
+2023-02-06T08:41:06.587673-0500 taler-exchange-transfer-17350 INFO No more 
pending wire transfers, shutting down (because we are in test mode)
+2023-02-06T08:41:06.592781-0500 taler-exchange-transfer-17350 INFO Running 
shutdown
+2023-02-06T08:41:06.711912-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+==17350== 
+==17350== HEAP SUMMARY:
+==17350==     in use at exit: 5,291 bytes in 26 blocks
+==17350==   total heap usage: 3,780 allocs, 3,754 frees, 716,565 bytes 
allocated
+==17350== 
+==17350== LEAK SUMMARY:
+==17350==    definitely lost: 0 bytes in 0 blocks
+==17350==    indirectly lost: 0 bytes in 0 blocks
+==17350==      possibly lost: 0 bytes in 0 blocks
+==17350==    still reachable: 5,291 bytes in 26 blocks
+==17350==         suppressed: 0 bytes in 0 blocks
+==17350== Rerun with --leak-check=full to see details of leaked memory
+==17350== 
+==17350== For lists of detected and suppressed errors, rerun with: -s
+==17350== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:41:06.737971-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:06.738680-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:41:06.738922-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: check_bank_transfer-paid-unincreased-refund
+2023-02-06T08:41:06.739113-0500 .libs/test_merchant_api_cs-16942 INFO Deposit 
reference NOT given
+2023-02-06T08:41:06.739371-0500 .libs/test_merchant_api_cs-16942 INFO 
converted debit_payto (payto://x-taler-bank/localhost/2?receiver-name=2) to 
debit_account (2)
+2023-02-06T08:41:06.739605-0500 .libs/test_merchant_api_cs-16942 INFO 
converted credit_payto (payto://x-taler-bank/localhost/3?receiver-name=3) to 
credit_account (3)
+2023-02-06T08:41:06.740034-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `refund'
+2023-02-06T08:41:06.740226-0500 .libs/test_merchant_api_cs-16942 INFO Exiting 
from batch: refund
+2023-02-06T08:41:06.740470-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:06.740662-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-reserve-tip-1
+2023-02-06T08:41:06.748678-0500 
taler-merchant-httpd-17112(N2DGBVTCEAG2KS998QZH557M6C) INFO Handling request 
(POST) for URL '/private/reserves'
+2023-02-06T08:41:06.751311-0500 
taler-merchant-httpd-17112(N2DGBVTCEAG2KS998QZH557M6C) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:41:06.758893-0500 
taler-merchant-httpd-17112(N2DGBVTCEAG2KS998QZH557M6C) INFO Starting merchant 
DB transaction `insert reserve'
+2023-02-06T08:41:06.764440-0500 
taler-merchant-httpd-17112(N2DGBVTCEAG2KS998QZH557M6C) INFO Committing merchant 
DB transaction insert reserve
+2023-02-06T08:41:06.785260-0500 
taler-merchant-httpd-17112(N2DGBVTCEAG2KS998QZH557M6C) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:41:06.792209-0500 
taler-merchant-httpd-17112(N2DGBVTCEAG2KS998QZH557M6C) INFO Finished handling 
request for `/private/reserves' with MHD termination code 0
+2023-02-06T08:41:06.792632-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:06.792861-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-reserve-tip-1-exch
+2023-02-06T08:41:06.794651-0500 .libs/test_merchant_api_cs-16942 INFO Trait 
reserve_priv/0 not found.
+2023-02-06T08:41:06.795483-0500 taler-exchange-httpd-17126 INFO Handling new 
request
+2023-02-06T08:41:06.796361-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting administrative transaction at 
`http://localhost:8082/2/admin/add-incoming' for reserve 63QEDH9A
+2023-02-06T08:41:06.797508-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Handling request 
(GET) for URL '/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0'
+2023-02-06T08:41:06.799532-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Starting DB event 
listening
+2023-02-06T08:41:06.800033-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Executing PQ 
command `LISTEN XFY1YE1DB2CVAT5QFM7Q39N7AVVBHVJE85XDGD23013YBRCXJTG30'
+2023-02-06T08:41:06.801316-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Starting 
transaction `get reserve balance'
+2023-02-06T08:41:06.804275-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Long-polling on 
reserve for 1 m
+2023-02-06T08:41:06.811002-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:41:06.811277-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:41:06.811552-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:41:06.811782-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:41:06.812006-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:41:06.812253-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:41:06.813365-0500 .libs/test_merchant_api_cs-16942 INFO 
Receiving incoming wire transfer: 62->2, subject: 63QEDH9A, amount: EUR:20.04
+2023-02-06T08:41:06.813935-0500 .libs/test_merchant_api_cs-16942 INFO Making 
transfer from 62 to 2 over EUR:20.04 and subject 63QEDH9A at row 9
+2023-02-06T08:41:06.816807-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:06.817013-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: wirewatch-3
+==17358== Memcheck, a memory error detector
+==17358== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17358== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17358== Command: /home/priscilla/install/bin/taler-exchange-wirewatch -c 
test_merchant_api-cs.conf -S 1 -w 0 -t -L DEBUG
+==17358== 
+2023-02-06T08:41:08.056437-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:08.079116-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:08.327794-0500 taler-exchange-wirewatch-17358 INFO Change in 
PQ event FD to -1
+2023-02-06T08:41:08.374194-0500 taler-exchange-wirewatch-17358 INFO New poll 
FD is -1
+2023-02-06T08:41:08.510658-0500 taler-exchange-wirewatch-17358 INFO Change in 
PQ event FD to 8
+2023-02-06T08:41:08.510914-0500 taler-exchange-wirewatch-17358 INFO New poll 
FD is 8
+2023-02-06T08:41:08.534113-0500 taler-exchange-wirewatch-17358 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:41:08.536704-0500 taler-exchange-wirewatch-17358 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:41:08.596252-0500 taler-exchange-wirewatch-17358 INFO Claimed 
new shard
+2023-02-06T08:41:08.597938-0500 taler-exchange-wirewatch-17358 INFO Starting 
with shard wirewatch-exchange-account-exchange at (7,8] locked for 0 ms
+2023-02-06T08:41:08.598819-0500 taler-exchange-wirewatch-17358 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:41:08.600183-0500 taler-exchange-wirewatch-17358 INFO Requesting 
credit history staring from 7
+2023-02-06T08:41:08.606264-0500 taler-exchange-wirewatch-17358 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=7'
+2023-02-06T08:41:08.740408-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:08.762756-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:08.931286-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:41:08.931536-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:41:08.931680-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x8117a60 (0)
+2023-02-06T08:41:08.931853-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 7
+2023-02-06T08:41:08.932078-0500 .libs/test_merchant_api_cs-16942 INFO 
Returning 1 credit transactions starting (inclusive) from 9
+2023-02-06T08:41:09.044149-0500 taler-exchange-wirewatch-17358 INFO History 
request returned with HTTP status 200
+2023-02-06T08:41:09.048100-0500 taler-exchange-wirewatch-17358 INFO Serial ID 
9 past shard end at 8, ending iteration early!
+2023-02-06T08:41:09.049228-0500 taler-exchange-wirewatch-17358 INFO Starting 
READ COMMITTED transaction `wirewatch check for incoming wire transfers`
+2023-02-06T08:41:09.050649-0500 taler-exchange-wirewatch-17358 INFO Importing 
0 transactions
+2023-02-06T08:41:09.051756-0500 taler-exchange-wirewatch-17358 INFO Completing 
shard 7-8
+2023-02-06T08:41:09.054969-0500 taler-exchange-wirewatch-17358 INFO Completed 
shard wirewatch-exchange-account-exchange (7,8] after 518 ms
+2023-02-06T08:41:09.055630-0500 taler-exchange-wirewatch-17358 INFO Committing 
wirewatch-exchange-account-exchange progress (7,8] at 8
+ (shard done)2023-02-06T08:41:09.073112-0500 taler-exchange-wirewatch-17358 
INFO Increasing batch size to 2
+2023-02-06T08:41:09.073614-0500 taler-exchange-wirewatch-17358 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:41:09.089620-0500 taler-exchange-wirewatch-17358 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:41:09.093205-0500 taler-exchange-wirewatch-17358 INFO Trying to 
claim shard (8-9]
+2023-02-06T08:41:09.105444-0500 taler-exchange-wirewatch-17358 INFO Claimed 
new shard
+2023-02-06T08:41:09.105682-0500 taler-exchange-wirewatch-17358 INFO Starting 
with shard wirewatch-exchange-account-exchange at (8,9] locked for 0 ms
+2023-02-06T08:41:09.105903-0500 taler-exchange-wirewatch-17358 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:41:09.107324-0500 taler-exchange-wirewatch-17358 INFO Requesting 
credit history staring from 8
+2023-02-06T08:41:09.107566-0500 taler-exchange-wirewatch-17358 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=8'
+2023-02-06T08:41:09.111317-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:41:09.111503-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:41:09.111636-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x823b860 (0)
+2023-02-06T08:41:09.111803-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 8
+2023-02-06T08:41:09.112011-0500 .libs/test_merchant_api_cs-16942 INFO 
Returning 1 credit transactions starting (inclusive) from 9
+2023-02-06T08:41:09.115900-0500 taler-exchange-wirewatch-17358 INFO History 
request returned with HTTP status 200
+2023-02-06T08:41:09.116271-0500 taler-exchange-wirewatch-17358 INFO Starting 
READ COMMITTED transaction `wirewatch check for incoming wire transfers`
+2023-02-06T08:41:09.116878-0500 taler-exchange-wirewatch-17358 INFO Importing 
1 transactions
+2023-02-06T08:41:09.191218-0500 taler-exchange-wirewatch-17358 INFO Notifying 
on reserve!
+2023-02-06T08:41:09.194177-0500 taler-exchange-wirewatch-17358 INFO Executing 
command `NOTIFY XFY1YE1DB2CVAT5QFM7Q39N7AVVBHVJE85XDGD23013YBRCXJTG30, '''
+2023-02-06T08:41:09.195427-0500 taler-exchange-wirewatch-17358 INFO PG poll 
job active
+2023-02-06T08:41:09.196975-0500 taler-exchange-wirewatch-17358 INFO PG poll 
job finishes after 0 events
+2023-02-06T08:41:09.198150-0500 taler-exchange-wirewatch-17358 INFO Imported 
transaction 9.2023-02-06T08:41:09.198438-0500 taler-exchange-wirewatch-17358 
INFO Completing shard 8-9
+2023-02-06T08:41:09.199397-0500 taler-exchange-wirewatch-17358 INFO Completed 
shard wirewatch-exchange-account-exchange (8,9] after 109 ms
+2023-02-06T08:41:09.199613-0500 taler-exchange-wirewatch-17358 INFO Committing 
wirewatch-exchange-account-exchange progress (8,9] at 9
+ (shard done)2023-02-06T08:41:09.205520-0500 taler-exchange-httpd-17126 INFO 
PG poll job active
+2023-02-06T08:41:09.205590-0500 taler-exchange-wirewatch-17358 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:41:09.206030-0500 taler-exchange-httpd-17126 INFO Received 
notification xfy1ye1db2cvat5qfm7q39n7avvbhvje85xdgd23013ybrcxjtg30 with extra 
data `'
+2023-02-06T08:41:09.206314-0500 taler-exchange-wirewatch-17358 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:41:09.207192-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Resuming from 
long-polling on reserve
+2023-02-06T08:41:09.208240-0500 taler-exchange-wirewatch-17358 INFO Trying to 
claim shard (9-10]
+2023-02-06T08:41:09.209951-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Handling request 
(GET) for URL '/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0'
+2023-02-06T08:41:09.210460-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Starting 
transaction `get reserve balance'
+2023-02-06T08:41:09.215979-0500 taler-exchange-httpd-17126 INFO PG poll job 
finishes after 1 events
+2023-02-06T08:41:09.216355-0500 taler-exchange-httpd-17126 INFO Resubscribing
+2023-02-06T08:41:09.216505-0500 taler-exchange-wirewatch-17358 INFO Claimed 
new shard
+2023-02-06T08:41:09.216681-0500 taler-exchange-wirewatch-17358 INFO Starting 
with shard wirewatch-exchange-account-exchange at (9,10] locked for 0 ms
+2023-02-06T08:41:09.216834-0500 taler-exchange-wirewatch-17358 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:41:09.217061-0500 taler-exchange-wirewatch-17358 INFO Requesting 
credit history staring from 9
+2023-02-06T08:41:09.217250-0500 taler-exchange-wirewatch-17358 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=9'
+2023-02-06T08:41:09.217594-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Cancelling DB event 
listening
+2023-02-06T08:41:09.218534-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:41:09.218778-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:41:09.218976-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x81bcd00 (0)
+2023-02-06T08:41:09.219326-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 9
+2023-02-06T08:41:09.220646-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Executing PQ 
command `UNLISTEN XFY1YE1DB2CVAT5QFM7Q39N7AVVBHVJE85XDGD23013YBRCXJTG30'
+2023-02-06T08:41:09.221718-0500 taler-exchange-wirewatch-17358 INFO History 
request returned with HTTP status 204
+2023-02-06T08:41:09.222215-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Request for 
`/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0' completed (0)
+2023-02-06T08:41:09.222435-0500 taler-exchange-wirewatch-17358 INFO 
Transaction list drained and in test mode. Exiting
+2023-02-06T08:41:09.222450-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Request for 
`/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0' took 2426 ms
+2023-02-06T08:41:09.228278-0500 taler-merchant-httpd-17112 INFO Reserve 
activated with initial balance EUR:20.04
+==17358== 
+==17358== HEAP SUMMARY:
+==17358==     in use at exit: 5,293 bytes in 26 blocks
+==17358==   total heap usage: 3,994 allocs, 3,968 frees, 517,202 bytes 
allocated
+==17358== 
+==17358== LEAK SUMMARY:
+==17358==    definitely lost: 0 bytes in 0 blocks
+==17358==    indirectly lost: 0 bytes in 0 blocks
+==17358==      possibly lost: 0 bytes in 0 blocks
+==17358==    still reachable: 5,293 bytes in 26 blocks
+==17358==         suppressed: 0 bytes in 0 blocks
+==17358== Rerun with --leak-check=full to see details of leaked memory
+==17358== 
+==17358== For lists of detected and suppressed errors, rerun with: -s
+==17358== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:41:09.367333-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:09.367499-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: tip-sleep
+2023-02-06T08:41:10.764671-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:10.788855-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:12.368977-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.369248-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: authorize-tip-1
+2023-02-06T08:41:12.369813-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:12.380213-0500 
taler-merchant-httpd-17112(AAY3SCWD9KS4KMWBM3YNJSXC24) INFO Handling request 
(POST) for URL '/private/tips'
+2023-02-06T08:41:12.382153-0500 
taler-merchant-httpd-17112(AAY3SCWD9KS4KMWBM3YNJSXC24) INFO Starting merchant 
DB transaction `authorize tip'
+2023-02-06T08:41:12.391288-0500 
taler-merchant-httpd-17112(AAY3SCWD9KS4KMWBM3YNJSXC24) INFO Committing merchant 
DB transaction authorize tip
+2023-02-06T08:41:12.399685-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:12.425647-0500 
taler-merchant-httpd-17112(AAY3SCWD9KS4KMWBM3YNJSXC24) INFO Finished handling 
request for `/private/tips' with MHD termination code 0
+2023-02-06T08:41:12.432907-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.433176-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: authorize-tip-2
+2023-02-06T08:41:12.444438-0500 
taler-merchant-httpd-17112(P17Z6B8BM9AERPP0B9K4M6NGZC) INFO Handling request 
(POST) for URL 
'/private/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/authorize-tip'
+2023-02-06T08:41:12.446427-0500 
taler-merchant-httpd-17112(P17Z6B8BM9AERPP0B9K4M6NGZC) INFO Starting merchant 
DB transaction `authorize tip'
+2023-02-06T08:41:12.450073-0500 
taler-merchant-httpd-17112(P17Z6B8BM9AERPP0B9K4M6NGZC) INFO Committing merchant 
DB transaction authorize tip
+2023-02-06T08:41:12.462733-0500 
taler-merchant-httpd-17112(P17Z6B8BM9AERPP0B9K4M6NGZC) INFO Finished handling 
request for 
`/private/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/authorize-tip'
 with MHD termination code 0
+2023-02-06T08:41:12.464833-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.465077-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-tip-1
+2023-02-06T08:41:12.469221-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting URL 
'http://localhost:8080/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR'
+2023-02-06T08:41:12.473287-0500 
taler-merchant-httpd-17112(9HMSQYA613FDMTG9AG7E3T4A90) INFO Handling request 
(GET) for URL 
'/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR'
+2023-02-06T08:41:12.483565-0500 
taler-merchant-httpd-17112(9HMSQYA613FDMTG9AG7E3T4A90) INFO Finished handling 
request for 
`/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR'
 with MHD termination code 0
+2023-02-06T08:41:12.489314-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.489552-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: merchant-get-tip-1
+2023-02-06T08:41:12.496472-0500 
taler-merchant-httpd-17112(537F31KTSDZ8B2SYEKGJ2JK7S8) INFO Handling request 
(GET) for URL 
'/private/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR'
+2023-02-06T08:41:12.506379-0500 
taler-merchant-httpd-17112(537F31KTSDZ8B2SYEKGJ2JK7S8) INFO Finished handling 
request for 
`/private/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR'
 with MHD termination code 0
+2023-02-06T08:41:12.514710-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.514963-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-tips-1
+2023-02-06T08:41:12.521790-0500 
taler-merchant-httpd-17112(6ZMKDQJ5SP6C7EQW5TZA13QTWC) INFO Handling request 
(GET) for URL '/private/tips'
+2023-02-06T08:41:12.533832-0500 
taler-merchant-httpd-17112(6ZMKDQJ5SP6C7EQW5TZA13QTWC) INFO Finished handling 
request for `/private/tips' with MHD termination code 0
+2023-02-06T08:41:12.543127-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.543359-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-tips-1-asc
+2023-02-06T08:41:12.547075-0500 
taler-merchant-httpd-17112(AEA1QY8Y6MR7XXN1MQFTHB76W4) INFO Handling request 
(GET) for URL '/private/tips'
+2023-02-06T08:41:12.551758-0500 
taler-merchant-httpd-17112(AEA1QY8Y6MR7XXN1MQFTHB76W4) INFO Finished handling 
request for `/private/tips' with MHD termination code 0
+2023-02-06T08:41:12.553925-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.554151-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-tips-1-asc-offset
+2023-02-06T08:41:12.557407-0500 
taler-merchant-httpd-17112(H3D5YG1MM140933599GC3ASG3R) INFO Handling request 
(GET) for URL '/private/tips'
+2023-02-06T08:41:12.560902-0500 
taler-merchant-httpd-17112(H3D5YG1MM140933599GC3ASG3R) INFO Finished handling 
request for `/private/tips' with MHD termination code 0
+2023-02-06T08:41:12.562659-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.562884-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-reserves-1
+2023-02-06T08:41:12.568955-0500 
taler-merchant-httpd-17112(BM4KBK7731QKWAEAY9MDBFS7B4) INFO Handling request 
(GET) for URL '/private/reserves'
+2023-02-06T08:41:12.581989-0500 
taler-merchant-httpd-17112(BM4KBK7731QKWAEAY9MDBFS7B4) INFO Finished handling 
request for `/private/reserves' with MHD termination code 0
+2023-02-06T08:41:12.592939-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.593178-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-reserve-1
+2023-02-06T08:41:12.598725-0500 
taler-merchant-httpd-17112(5KABNQYFR2VZTYJ9EDN9JPDEWR) INFO Handling request 
(GET) for URL 
'/private/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0'
+2023-02-06T08:41:12.613074-0500 
taler-merchant-httpd-17112(5KABNQYFR2VZTYJ9EDN9JPDEWR) INFO Finished handling 
request for 
`/private/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0' with 
MHD termination code 0
+2023-02-06T08:41:12.621241-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.621481-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-reserve-2
+2023-02-06T08:41:12.624452-0500 
taler-merchant-httpd-17112(MPF0TPX8WVKANVJ6VR0B2CM8J0) INFO Handling request 
(GET) for URL 
'/private/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0'
+2023-02-06T08:41:12.636868-0500 
taler-merchant-httpd-17112(MPF0TPX8WVKANVJ6VR0B2CM8J0) INFO Finished handling 
request for 
`/private/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0' with 
MHD termination code 0
+2023-02-06T08:41:12.645317-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.645549-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pickup-tip-1
+2023-02-06T08:41:12.661300-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Handling new request
+2023-02-06T08:41:12.663026-0500 
taler-exchange-httpd-17126(PBKJKV1TAD7ES1XQ7CS7XZ7E4R) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:12.663279-0500 
taler-exchange-httpd-17126(PBKJKV1TAD7ES1XQ7CS7XZ7E4R) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:12.663499-0500 
taler-exchange-httpd-17126(PBKJKV1TAD7ES1XQ7CS7XZ7E4R) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:12.665861-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:41:12.671801-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:41:12.672063-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:41:12.672345-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 6 ms
+2023-02-06T08:41:12.675043-0500 
taler-exchange-httpd-17126(PBKJKV1TAD7ES1XQ7CS7XZ7E4R) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:41:12.727197-0500 
taler-merchant-httpd-17112(EPRMCGHB49Q0SJ0CJGADZG07AW) INFO Handling request 
(POST) for URL 
'/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR/pickup'
+2023-02-06T08:41:12.741696-0500 
taler-merchant-httpd-17112(EPRMCGHB49Q0SJ0CJGADZG07AW) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:41:12.745908-0500 
taler-merchant-httpd-17112(EPRMCGHB49Q0SJ0CJGADZG07AW) INFO Starting merchant 
DB transaction `pickup tip'
+2023-02-06T08:41:12.751210-0500 
taler-merchant-httpd-17112(EPRMCGHB49Q0SJ0CJGADZG07AW) INFO Lookup pickup 
`M7DY6XDC' resulted in 0
+2023-02-06T08:41:12.761462-0500 
taler-merchant-httpd-17112(EPRMCGHB49Q0SJ0CJGADZG07AW) INFO Committing merchant 
DB transaction pickup tip
+2023-02-06T08:41:12.775045-0500 
taler-merchant-httpd-17112(EPRMCGHB49Q0SJ0CJGADZG07AW) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:41:12.792303-0500 
taler-merchant-httpd-17112(EPRMCGHB49Q0SJ0CJGADZG07AW) INFO Attempting to 
withdraw from reserve 63QEDH9A
+2023-02-06T08:41:12.799231-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:12.799229-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Handling new request
+2023-02-06T08:41:12.801713-0500 
taler-exchange-httpd-17126(GC1F32B2WQKGN3SEDNRV37C73W) INFO Handling request 
(POST) for URL 
'/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/withdraw'
+2023-02-06T08:41:12.802071-0500 
taler-exchange-httpd-17126(GC1F32B2WQKGN3SEDNRV37C73W) INFO Handling request 
(POST) for URL 
'/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/withdraw'
+2023-02-06T08:41:12.802397-0500 
taler-exchange-httpd-17126(GC1F32B2WQKGN3SEDNRV37C73W) INFO Handling request 
(POST) for URL 
'/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/withdraw'
+2023-02-06T08:41:12.814149-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:41:12.816288-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:41:12.816543-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:41:12.816825-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2693 µs
+2023-02-06T08:41:12.817285-0500 
taler-exchange-httpd-17126(GC1F32B2WQKGN3SEDNRV37C73W) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:41:12.818515-0500 
taler-exchange-httpd-17126(GC1F32B2WQKGN3SEDNRV37C73W) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:41:12.818824-0500 
taler-exchange-httpd-17126(GC1F32B2WQKGN3SEDNRV37C73W) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:41:12.819096-0500 
taler-exchange-httpd-17126(GC1F32B2WQKGN3SEDNRV37C73W) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:41:12.824553-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:12.831195-0500 
taler-exchange-httpd-17126(GC1F32B2WQKGN3SEDNRV37C73W) INFO Request for 
`/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/withdraw' 
completed (0)
+2023-02-06T08:41:12.851623-0500 
taler-merchant-httpd-17112(EPRMCGHB49Q0SJ0CJGADZG07AW) INFO Starting merchant 
DB transaction `pickup tip'
+2023-02-06T08:41:12.858441-0500 
taler-merchant-httpd-17112(EPRMCGHB49Q0SJ0CJGADZG07AW) INFO Lookup pickup 
`M7DY6XDC' resulted in 1
+2023-02-06T08:41:12.859660-0500 
taler-merchant-httpd-17112(EPRMCGHB49Q0SJ0CJGADZG07AW) INFO Rolling back 
merchant DB transaction `pickup tip'
+2023-02-06T08:41:12.867811-0500 
taler-merchant-httpd-17112(EPRMCGHB49Q0SJ0CJGADZG07AW) INFO Finished handling 
request for 
`/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR/pickup'
 with MHD termination code 0
+2023-02-06T08:41:12.915739-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.915947-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: query-tip-2
+2023-02-06T08:41:12.916274-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting URL 
'http://localhost:8080/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR'
+2023-02-06T08:41:12.919191-0500 
taler-merchant-httpd-17112(PB63V3JQQBK1FHR651NVMZB4NC) INFO Handling request 
(GET) for URL 
'/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR'
+2023-02-06T08:41:12.923909-0500 
taler-merchant-httpd-17112(PB63V3JQQBK1FHR651NVMZB4NC) INFO Finished handling 
request for 
`/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR'
 with MHD termination code 0
+2023-02-06T08:41:12.925635-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:12.925818-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pickup-tip-2
+2023-02-06T08:41:12.930972-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Handling new request
+2023-02-06T08:41:12.932701-0500 
taler-exchange-httpd-17126(0F10GHPN6RNA5N6H9T887P7EZ0) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:12.933009-0500 
taler-exchange-httpd-17126(0F10GHPN6RNA5N6H9T887P7EZ0) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:12.933280-0500 
taler-exchange-httpd-17126(0F10GHPN6RNA5N6H9T887P7EZ0) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:12.936107-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:41:12.941288-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:41:12.941546-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:41:12.941826-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 5 ms
+2023-02-06T08:41:12.944203-0500 
taler-exchange-httpd-17126(0F10GHPN6RNA5N6H9T887P7EZ0) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:41:12.982588-0500 
taler-merchant-httpd-17112(S6BVQQ2CPTZ123VSTPE8DNV3TR) INFO Handling request 
(POST) for URL 
'/tips/KTSZ7ZATWEB5WEP7E3XBY97VD5F5PARTVES5D8AXPJJRN7495EFXNGZGRQ6ZJ2PB5FKX6RHK3F79S3SRSGVTWGAARX380J1HA15KGBR/pickup'
+2023-02-06T08:41:12.986259-0500 
taler-merchant-httpd-17112(S6BVQQ2CPTZ123VSTPE8DNV3TR) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:41:12.987053-0500 
taler-merchant-httpd-17112(S6BVQQ2CPTZ123VSTPE8DNV3TR) INFO Starting merchant 
DB transaction `pickup tip'
+2023-02-06T08:41:12.988796-0500 
taler-merchant-httpd-17112(S6BVQQ2CPTZ123VSTPE8DNV3TR) INFO Lookup pickup 
`N14CTJC0' resulted in 0
+2023-02-06T08:41:12.993278-0500 
taler-merchant-httpd-17112(S6BVQQ2CPTZ123VSTPE8DNV3TR) INFO Committing merchant 
DB transaction pickup tip
+2023-02-06T08:41:13.005652-0500 
taler-merchant-httpd-17112(S6BVQQ2CPTZ123VSTPE8DNV3TR) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:41:13.014175-0500 
taler-merchant-httpd-17112(S6BVQQ2CPTZ123VSTPE8DNV3TR) INFO Attempting to 
withdraw from reserve 63QEDH9A
+2023-02-06T08:41:13.019060-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Handling new request
+2023-02-06T08:41:13.021462-0500 
taler-exchange-httpd-17126(4DFN27F4BQSBC26G8J3F5ZT5N0) INFO Handling request 
(POST) for URL 
'/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/withdraw'
+2023-02-06T08:41:13.021922-0500 
taler-exchange-httpd-17126(4DFN27F4BQSBC26G8J3F5ZT5N0) INFO Handling request 
(POST) for URL 
'/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/withdraw'
+2023-02-06T08:41:13.022325-0500 
taler-exchange-httpd-17126(4DFN27F4BQSBC26G8J3F5ZT5N0) INFO Handling request 
(POST) for URL 
'/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/withdraw'
+2023-02-06T08:41:13.038478-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T08:41:13.040604-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:41:13.040859-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:41:13.041144-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2691 µs
+2023-02-06T08:41:13.041610-0500 
taler-exchange-httpd-17126(4DFN27F4BQSBC26G8J3F5ZT5N0) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:41:13.042872-0500 
taler-exchange-httpd-17126(4DFN27F4BQSBC26G8J3F5ZT5N0) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T08:41:13.043167-0500 
taler-exchange-httpd-17126(4DFN27F4BQSBC26G8J3F5ZT5N0) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T08:41:13.043445-0500 
taler-exchange-httpd-17126(4DFN27F4BQSBC26G8J3F5ZT5N0) INFO KYC check: new 
total is EUR:5.01
+2023-02-06T08:41:13.052379-0500 
taler-exchange-httpd-17126(4DFN27F4BQSBC26G8J3F5ZT5N0) INFO Request for 
`/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/withdraw' 
completed (0)
+2023-02-06T08:41:13.061248-0500 
taler-merchant-httpd-17112(S6BVQQ2CPTZ123VSTPE8DNV3TR) INFO Starting merchant 
DB transaction `pickup tip'
+2023-02-06T08:41:13.063728-0500 
taler-merchant-httpd-17112(S6BVQQ2CPTZ123VSTPE8DNV3TR) INFO Lookup pickup 
`N14CTJC0' resulted in 1
+2023-02-06T08:41:13.064011-0500 
taler-merchant-httpd-17112(S6BVQQ2CPTZ123VSTPE8DNV3TR) INFO Rolling back 
merchant DB transaction `pickup tip'
+2023-02-06T08:41:13.067220-0500 
taler-merchant-httpd-17112(S6BVQQ2CPTZ123VSTPE8DNV3TR) INFO Finished handling 
request for 
`/tips/KTSZ7ZATWEB5WEP7E3XBY97VD5F5PARTVES5D8AXPJJRN7495EFXNGZGRQ6ZJ2PB5FKX6RHK3F79S3SRSGVTWGAARX380J1HA15KGBR/pickup'
 with MHD termination code 0
+2023-02-06T08:41:13.106600-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:13.106815-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pickup-tip-3-too-much
+2023-02-06T08:41:13.111210-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Handling new request
+2023-02-06T08:41:13.112949-0500 
taler-exchange-httpd-17126(6ETNNGK88G46Q17DK9GAK0KB7W) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:13.113258-0500 
taler-exchange-httpd-17126(6ETNNGK88G46Q17DK9GAK0KB7W) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:13.113541-0500 
taler-exchange-httpd-17126(6ETNNGK88G46Q17DK9GAK0KB7W) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:13.116419-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:41:13.121200-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:41:13.121457-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:41:13.121738-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 5 ms
+2023-02-06T08:41:13.125168-0500 
taler-exchange-httpd-17126(6ETNNGK88G46Q17DK9GAK0KB7W) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:41:13.165498-0500 
taler-merchant-httpd-17112(Y6GJH6BQX5643BGSPABMF3QND4) INFO Handling request 
(POST) for URL 
'/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR/pickup'
+2023-02-06T08:41:13.169530-0500 
taler-merchant-httpd-17112(Y6GJH6BQX5643BGSPABMF3QND4) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:41:13.170158-0500 
taler-merchant-httpd-17112(Y6GJH6BQX5643BGSPABMF3QND4) INFO Starting merchant 
DB transaction `pickup tip'
+2023-02-06T08:41:13.172031-0500 
taler-merchant-httpd-17112(Y6GJH6BQX5643BGSPABMF3QND4) INFO Lookup pickup 
`VQDZS0JZ' resulted in 0
+2023-02-06T08:41:13.173841-0500 
taler-merchant-httpd-17112(Y6GJH6BQX5643BGSPABMF3QND4) WARNING External 
protocol violation detected at taler-merchant-httpd_post-tips-ID-pickup.c:951.
+2023-02-06T08:41:13.174248-0500 
taler-merchant-httpd-17112(Y6GJH6BQX5643BGSPABMF3QND4) INFO Rolling back 
merchant DB transaction `pickup tip'
+2023-02-06T08:41:13.177615-0500 
taler-merchant-httpd-17112(Y6GJH6BQX5643BGSPABMF3QND4) INFO Finished handling 
request for 
`/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR/pickup'
 with MHD termination code 0
+2023-02-06T08:41:13.179510-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:13.179709-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pickup-tip-4
+2023-02-06T08:41:13.184571-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Handling new request
+2023-02-06T08:41:13.186309-0500 
taler-exchange-httpd-17126(APHE2HJTFC599W8F6X5K2HX5XW) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:13.186667-0500 
taler-exchange-httpd-17126(APHE2HJTFC599W8F6X5K2HX5XW) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:13.186940-0500 
taler-exchange-httpd-17126(APHE2HJTFC599W8F6X5K2HX5XW) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:13.189798-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key 0HBYZESC
+2023-02-06T08:41:13.195560-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:41:13.195818-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:41:13.196098-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 6 ms
+2023-02-06T08:41:13.199429-0500 
taler-exchange-httpd-17126(APHE2HJTFC599W8F6X5K2HX5XW) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:41:13.237984-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) INFO Handling request 
(POST) for URL 
'/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR/pickup'
+2023-02-06T08:41:13.241182-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:41:13.241815-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) INFO Starting merchant 
DB transaction `pickup tip'
+2023-02-06T08:41:13.243634-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) INFO Lookup pickup 
`XA4X0AVG' resulted in 0
+2023-02-06T08:41:13.247731-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) INFO Committing merchant 
DB transaction pickup tip
+2023-02-06T08:41:13.261109-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:41:13.269653-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) INFO Attempting to 
withdraw from reserve 63QEDH9A
+2023-02-06T08:41:13.274111-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) INFO Received keys from 
URL `http://192.0.2.1/404/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T08:41:13.274313-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Handling new request
+2023-02-06T08:41:13.274426-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) WARNING Exchange failed 
to give expiration time, assuming in 1 h
+2023-02-06T08:41:13.274739-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) WARNING Failed to 
receive /keys response from exchange http://192.0.2.1/404/
+2023-02-06T08:41:13.276092-0500 
taler-exchange-httpd-17126(72JK8GX9Z8BC93AWAQF63AJ2TR) INFO Handling request 
(POST) for URL 
'/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/withdraw'
+2023-02-06T08:41:13.276430-0500 
taler-exchange-httpd-17126(72JK8GX9Z8BC93AWAQF63AJ2TR) INFO Handling request 
(POST) for URL 
'/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/withdraw'
+2023-02-06T08:41:13.276726-0500 
taler-exchange-httpd-17126(72JK8GX9Z8BC93AWAQF63AJ2TR) INFO Handling request 
(POST) for URL 
'/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/withdraw'
+2023-02-06T08:41:13.287080-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to sign over bytes with key 0HBYZESC
+2023-02-06T08:41:13.289220-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 9 and length 44
+2023-02-06T08:41:13.289473-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 44
+2023-02-06T08:41:13.289755-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
signature after 2691 µs
+2023-02-06T08:41:13.290213-0500 
taler-exchange-httpd-17126(72JK8GX9Z8BC93AWAQF63AJ2TR) INFO Starting 
transaction `run withdraw'
+2023-02-06T08:41:13.291458-0500 
taler-exchange-httpd-17126(72JK8GX9Z8BC93AWAQF63AJ2TR) INFO Signaling amount 
EUR:0.01 for KYC check
+2023-02-06T08:41:13.291762-0500 
taler-exchange-httpd-17126(72JK8GX9Z8BC93AWAQF63AJ2TR) INFO KYC check with new 
amount EUR:0.01
+2023-02-06T08:41:13.292038-0500 
taler-exchange-httpd-17126(72JK8GX9Z8BC93AWAQF63AJ2TR) INFO KYC check: new 
total is EUR:0.01
+2023-02-06T08:41:13.308444-0500 
taler-exchange-httpd-17126(72JK8GX9Z8BC93AWAQF63AJ2TR) INFO Request for 
`/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0/withdraw' 
completed (0)
+2023-02-06T08:41:13.316811-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) INFO Starting merchant 
DB transaction `pickup tip'
+2023-02-06T08:41:13.318641-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) INFO Lookup pickup 
`XA4X0AVG' resulted in 1
+2023-02-06T08:41:13.318916-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) INFO Rolling back 
merchant DB transaction `pickup tip'
+2023-02-06T08:41:13.321969-0500 
taler-merchant-httpd-17112(M9AKF0GBZ4DFK7X797A0H21DX8) INFO Finished handling 
request for 
`/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR/pickup'
 with MHD termination code 0
+2023-02-06T08:41:13.363929-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:13.364140-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: merchant-get-tip-2
+2023-02-06T08:41:13.367413-0500 
taler-merchant-httpd-17112(E51273VQZQC7KMY4HF6JNY2B8W) INFO Handling request 
(GET) for URL 
'/private/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR'
+2023-02-06T08:41:13.381022-0500 
taler-merchant-httpd-17112(E51273VQZQC7KMY4HF6JNY2B8W) INFO Finished handling 
request for 
`/private/tips/DBYK6G4N8KWPM3078M5ESM305WJ7BWG85W6YHEGFDBXDX6FABGBRB88GGYZFG3Z59A8DD5JZZXK0JKG9BXR2EGGX2C3CY3ATNW1YPFR'
 with MHD termination code 0
+2023-02-06T08:41:13.389567-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:13.389766-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-reserve-tip-2-fake
+2023-02-06T08:41:13.392577-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:13.392741-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: authorize-tip-null
+2023-02-06T08:41:13.396756-0500 
taler-merchant-httpd-17112(VE5G0MJSJ50QAHYCHR7MZM1CMG) INFO Handling request 
(POST) for URL 
'/private/reserves/TTTYSPHAJDWTTD5JQ9C0FWRBPVC8GA4YS10SGTDAQCZ4C85YPS30/authorize-tip'
+2023-02-06T08:41:13.397797-0500 
taler-merchant-httpd-17112(VE5G0MJSJ50QAHYCHR7MZM1CMG) INFO Starting merchant 
DB transaction `authorize tip'
+2023-02-06T08:41:13.399561-0500 
taler-merchant-httpd-17112(VE5G0MJSJ50QAHYCHR7MZM1CMG) INFO Rolling back 
merchant DB transaction `authorize tip'
+2023-02-06T08:41:13.401687-0500 
taler-merchant-httpd-17112(VE5G0MJSJ50QAHYCHR7MZM1CMG) INFO Finished handling 
request for 
`/private/reserves/TTTYSPHAJDWTTD5JQ9C0FWRBPVC8GA4YS10SGTDAQCZ4C85YPS30/authorize-tip'
 with MHD termination code 0
+2023-02-06T08:41:13.403310-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:13.403501-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-reserve-tip-2
+2023-02-06T08:41:13.412425-0500 
taler-merchant-httpd-17112(S1PZHA4VW8A8ZCYDSJ4D02P4FW) INFO Handling request 
(POST) for URL '/private/reserves'
+2023-02-06T08:41:13.413413-0500 
taler-merchant-httpd-17112(S1PZHA4VW8A8ZCYDSJ4D02P4FW) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:41:13.416530-0500 
taler-merchant-httpd-17112(S1PZHA4VW8A8ZCYDSJ4D02P4FW) INFO Starting merchant 
DB transaction `insert reserve'
+2023-02-06T08:41:13.418811-0500 
taler-merchant-httpd-17112(S1PZHA4VW8A8ZCYDSJ4D02P4FW) INFO Committing merchant 
DB transaction insert reserve
+2023-02-06T08:41:13.427818-0500 
taler-merchant-httpd-17112(S1PZHA4VW8A8ZCYDSJ4D02P4FW) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T08:41:13.430192-0500 
taler-merchant-httpd-17112(S1PZHA4VW8A8ZCYDSJ4D02P4FW) INFO Finished handling 
request for `/private/reserves' with MHD termination code 0
+2023-02-06T08:41:13.430881-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:13.431101-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: create-reserve-tip-2-exch
+2023-02-06T08:41:13.431431-0500 .libs/test_merchant_api_cs-16942 INFO Trait 
reserve_priv/0 not found.
+2023-02-06T08:41:13.431957-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting administrative transaction at 
`http://localhost:8082/2/admin/add-incoming' for reserve EES4FVKM
+2023-02-06T08:41:13.432570-0500 
taler-exchange-httpd-17126(HS20S6EHTAN79C347790RD8JXW) INFO Handling new request
+2023-02-06T08:41:13.434057-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Handling request 
(GET) for URL '/reserves/NZEMP70T130RMJGD70NXJTJZMF3Q3PX6XHCN6HHBXV13AQN8GDP0'
+2023-02-06T08:41:13.434448-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Starting DB event 
listening
+2023-02-06T08:41:13.434833-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Executing PQ 
command `LISTEN X3WP91XA0N20GSRW6TGB9YY9EP98EGVCPJ48PHZ0JVCBEZ3ZV18AG'
+2023-02-06T08:41:13.435657-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Starting 
transaction `get reserve balance'
+2023-02-06T08:41:13.437059-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:41:13.437195-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Long-polling on 
reserve for 1 m
+2023-02-06T08:41:13.437323-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:41:13.437572-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:41:13.437790-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:41:13.438013-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/admin/add-incoming'
+2023-02-06T08:41:13.438230-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T08:41:13.439352-0500 .libs/test_merchant_api_cs-16942 INFO 
Receiving incoming wire transfer: 62->2, subject: EES4FVKM, amount: EUR:1.04
+2023-02-06T08:41:13.439912-0500 .libs/test_merchant_api_cs-16942 INFO Making 
transfer from 62 to 2 over EUR:1.04 and subject EES4FVKM at row 10
+2023-02-06T08:41:13.442173-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:13.442362-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: wirewatch-4
+==17369== Memcheck, a memory error detector
+==17369== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==17369== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==17369== Command: /home/priscilla/install/bin/taler-exchange-wirewatch -c 
test_merchant_api-cs.conf -S 1 -w 0 -t -L DEBUG
+==17369== 
+2023-02-06T08:41:14.401138-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:14.425119-0500 .libs/test_merchant_api_cs-16942 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:14.826216-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:14.845919-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:14.953181-0500 taler-exchange-wirewatch-17369 INFO Change in 
PQ event FD to -1
+2023-02-06T08:41:14.998964-0500 taler-exchange-wirewatch-17369 INFO New poll 
FD is -1
+2023-02-06T08:41:15.135028-0500 taler-exchange-wirewatch-17369 INFO Change in 
PQ event FD to 8
+2023-02-06T08:41:15.135284-0500 taler-exchange-wirewatch-17369 INFO New poll 
FD is 8
+2023-02-06T08:41:15.158472-0500 taler-exchange-wirewatch-17369 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:41:15.161052-0500 taler-exchange-wirewatch-17369 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:41:15.207395-0500 taler-exchange-wirewatch-17369 INFO Claimed 
new shard
+2023-02-06T08:41:15.209026-0500 taler-exchange-wirewatch-17369 INFO Starting 
with shard wirewatch-exchange-account-exchange at (9,10] locked for 0 ms
+2023-02-06T08:41:15.209879-0500 taler-exchange-wirewatch-17369 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:41:15.211275-0500 taler-exchange-wirewatch-17369 INFO Requesting 
credit history staring from 9
+2023-02-06T08:41:15.217348-0500 taler-exchange-wirewatch-17369 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=9'
+2023-02-06T08:41:15.569608-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:41:15.569860-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:41:15.570042-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x81b0150 (0)
+2023-02-06T08:41:15.570264-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 9
+2023-02-06T08:41:15.570590-0500 .libs/test_merchant_api_cs-16942 INFO 
Returning 1 credit transactions starting (inclusive) from 10
+2023-02-06T08:41:15.679960-0500 taler-exchange-wirewatch-17369 INFO History 
request returned with HTTP status 200
+2023-02-06T08:41:15.683240-0500 taler-exchange-wirewatch-17369 INFO Starting 
READ COMMITTED transaction `wirewatch check for incoming wire transfers`
+2023-02-06T08:41:15.684593-0500 taler-exchange-wirewatch-17369 INFO Importing 
1 transactions
+2023-02-06T08:41:15.763928-0500 taler-exchange-wirewatch-17369 INFO Notifying 
on reserve!
+2023-02-06T08:41:15.766891-0500 taler-exchange-wirewatch-17369 INFO Executing 
command `NOTIFY X3WP91XA0N20GSRW6TGB9YY9EP98EGVCPJ48PHZ0JVCBEZ3ZV18AG, '''
+2023-02-06T08:41:15.768132-0500 taler-exchange-wirewatch-17369 INFO PG poll 
job active
+2023-02-06T08:41:15.769670-0500 taler-exchange-wirewatch-17369 INFO PG poll 
job finishes after 0 events
+2023-02-06T08:41:15.770882-0500 taler-exchange-wirewatch-17369 INFO Imported 
transaction 10.2023-02-06T08:41:15.771899-0500 taler-exchange-wirewatch-17369 
INFO Completing shard 9-10
+2023-02-06T08:41:15.775134-0500 taler-exchange-wirewatch-17369 INFO Completed 
shard wirewatch-exchange-account-exchange (9,10] after 614 ms
+2023-02-06T08:41:15.775765-0500 taler-exchange-wirewatch-17369 INFO Committing 
wirewatch-exchange-account-exchange progress (9,10] at 10
+ (shard done)2023-02-06T08:41:15.783380-0500 taler-exchange-httpd-17126 INFO 
PG poll job active
+2023-02-06T08:41:15.783713-0500 taler-exchange-httpd-17126 INFO Received 
notification x3wp91xa0n20gsrw6tgb9yy9ep98egvcpj48phz0jvcbez3zv18ag with extra 
data `'
+2023-02-06T08:41:15.783927-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Resuming from 
long-polling on reserve
+2023-02-06T08:41:15.784204-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Handling request 
(GET) for URL '/reserves/NZEMP70T130RMJGD70NXJTJZMF3Q3PX6XHCN6HHBXV13AQN8GDP0'
+2023-02-06T08:41:15.784504-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Starting 
transaction `get reserve balance'
+2023-02-06T08:41:15.784510-0500 taler-exchange-wirewatch-17369 INFO Increasing 
batch size to 2
+2023-02-06T08:41:15.785022-0500 taler-exchange-wirewatch-17369 INFO Will try 
to lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T08:41:15.787303-0500 taler-exchange-httpd-17126 INFO PG poll job 
finishes after 1 events
+2023-02-06T08:41:15.787455-0500 taler-exchange-httpd-17126 INFO Resubscribing
+2023-02-06T08:41:15.788126-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Cancelling DB event 
listening
+2023-02-06T08:41:15.788309-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Executing PQ 
command `UNLISTEN X3WP91XA0N20GSRW6TGB9YY9EP98EGVCPJ48PHZ0JVCBEZ3ZV18AG'
+2023-02-06T08:41:15.788763-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Request for 
`/reserves/NZEMP70T130RMJGD70NXJTJZMF3Q3PX6XHCN6HHBXV13AQN8GDP0' completed (0)
+2023-02-06T08:41:15.788993-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Request for 
`/reserves/NZEMP70T130RMJGD70NXJTJZMF3Q3PX6XHCN6HHBXV13AQN8GDP0' took 2356 ms
+2023-02-06T08:41:15.794453-0500 taler-merchant-httpd-17112 INFO Reserve 
activated with initial balance EUR:1.04
+2023-02-06T08:41:15.800849-0500 taler-exchange-wirewatch-17369 INFO Starting 
transaction `begin_shard'
+2023-02-06T08:41:15.805098-0500 taler-exchange-wirewatch-17369 INFO Trying to 
claim shard (10-11]
+2023-02-06T08:41:15.816655-0500 taler-exchange-wirewatch-17369 INFO Claimed 
new shard
+2023-02-06T08:41:15.816869-0500 taler-exchange-wirewatch-17369 INFO Starting 
with shard wirewatch-exchange-account-exchange at (10,11] locked for 0 ms
+2023-02-06T08:41:15.817073-0500 taler-exchange-wirewatch-17369 INFO Resetting 
shard start to original start point (0)
+2023-02-06T08:41:15.818426-0500 taler-exchange-wirewatch-17369 INFO Requesting 
credit history staring from 10
+2023-02-06T08:41:15.818691-0500 taler-exchange-wirewatch-17369 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=10'
+2023-02-06T08:41:15.822389-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
request for `/2/history/incoming'
+2023-02-06T08:41:15.822591-0500 .libs/test_merchant_api_cs-16942 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T08:41:15.822725-0500 .libs/test_merchant_api_cs-16942 INFO Handling 
/history/incoming connection 0x81ccdf0 (0)
+2023-02-06T08:41:15.822893-0500 .libs/test_merchant_api_cs-16942 INFO Request 
for 1 records from 10
+2023-02-06T08:41:15.826521-0500 taler-exchange-wirewatch-17369 INFO History 
request returned with HTTP status 204
+2023-02-06T08:41:15.827248-0500 taler-exchange-wirewatch-17369 INFO 
Transaction list drained and in test mode. Exiting
+==17369== 
+==17369== HEAP SUMMARY:
+==17369==     in use at exit: 5,293 bytes in 26 blocks
+==17369==   total heap usage: 3,844 allocs, 3,818 frees, 476,197 bytes 
allocated
+==17369== 
+==17369== LEAK SUMMARY:
+==17369==    definitely lost: 0 bytes in 0 blocks
+==17369==    indirectly lost: 0 bytes in 0 blocks
+==17369==      possibly lost: 0 bytes in 0 blocks
+==17369==    still reachable: 5,293 bytes in 26 blocks
+==17369==         suppressed: 0 bytes in 0 blocks
+==17369== Rerun with --leak-check=full to see details of leaked memory
+==17369== 
+==17369== For lists of detected and suppressed errors, rerun with: -s
+==17369== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:41:15.959708-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:15.959969-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: authorize-tip-insufficient-funds
+2023-02-06T08:41:15.965968-0500 
taler-merchant-httpd-17112(0EFEKAX4F7F8112S0YTHTH0ADW) INFO Handling request 
(POST) for URL 
'/private/reserves/NZEMP70T130RMJGD70NXJTJZMF3Q3PX6XHCN6HHBXV13AQN8GDP0/authorize-tip'
+2023-02-06T08:41:15.967147-0500 
taler-merchant-httpd-17112(0EFEKAX4F7F8112S0YTHTH0ADW) INFO Starting merchant 
DB transaction `authorize tip'
+2023-02-06T08:41:15.969051-0500 
taler-merchant-httpd-17112(0EFEKAX4F7F8112S0YTHTH0ADW) INFO Rolling back 
merchant DB transaction `authorize tip'
+2023-02-06T08:41:15.970933-0500 
taler-merchant-httpd-17112(0EFEKAX4F7F8112S0YTHTH0ADW) INFO Finished handling 
request for 
`/private/reserves/NZEMP70T130RMJGD70NXJTJZMF3Q3PX6XHCN6HHBXV13AQN8GDP0/authorize-tip'
 with MHD termination code 0
+2023-02-06T08:41:15.972460-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:15.972703-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: fake-tip-authorization
+2023-02-06T08:41:15.975266-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:15.975481-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: pickup-non-existent-id
+2023-02-06T08:41:15.984445-0500 
taler-exchange-httpd-17126(EVP4K7TWP81MKA020RY38WPH4W) INFO Handling new request
+2023-02-06T08:41:15.986187-0500 
taler-exchange-httpd-17126(CHXZR23YBEZDJ0CTVTQ37VSGPR) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:15.986512-0500 
taler-exchange-httpd-17126(CHXZR23YBEZDJ0CTVTQ37VSGPR) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:15.986786-0500 
taler-exchange-httpd-17126(CHXZR23YBEZDJ0CTVTQ37VSGPR) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T08:41:15.989702-0500 taler-exchange-secmod-cs-17125 INFO Received 
request to derive R with key EW528A72
+2023-02-06T08:41:15.995674-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of type 12 and length 72
+2023-02-06T08:41:15.995931-0500 taler-exchange-secmod-cs-17125 INFO Sending 
message of length 72
+2023-02-06T08:41:15.996212-0500 taler-exchange-secmod-cs-17125 INFO Sent CS 
Derived R after 6 ms
+2023-02-06T08:41:15.999669-0500 
taler-exchange-httpd-17126(CHXZR23YBEZDJ0CTVTQ37VSGPR) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T08:41:16.049507-0500 
taler-merchant-httpd-17112(RCC553BB31SQKRA4XNCJGW27X0) INFO Handling request 
(POST) for URL 
'/tips/M4KVHEJW3AQCBBWCTRJFGJAW70ANVBPENZKNDZ1YHVJNRK1B4A6S5RCVFZ8CQRFKCSMM08FKSNWW83WW8W3M58ZDN4620FZ8Y2W2XXG/pickup'
+2023-02-06T08:41:16.052729-0500 
taler-merchant-httpd-17112(RCC553BB31SQKRA4XNCJGW27X0) INFO Rolling back 
merchant DB transaction `(null)'
+2023-02-06T08:41:16.057718-0500 
taler-merchant-httpd-17112(RCC553BB31SQKRA4XNCJGW27X0) INFO Finished handling 
request for 
`/tips/M4KVHEJW3AQCBBWCTRJFGJAW70ANVBPENZKNDZ1YHVJNRK1B4A6S5RCVFZ8CQRFKCSMM08FKSNWW83WW8W3M58ZDN4620FZ8Y2W2XXG/pickup'
 with MHD termination code 0
+2023-02-06T08:41:16.060295-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:16.060525-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-reserves-2
+2023-02-06T08:41:16.064190-0500 
taler-merchant-httpd-17112(T42NWKSYQ9JQKGQ20MCVWVG1AW) INFO Handling request 
(GET) for URL '/private/reserves'
+2023-02-06T08:41:16.070240-0500 
taler-merchant-httpd-17112(T42NWKSYQ9JQKGQ20MCVWVG1AW) INFO Finished handling 
request for `/private/reserves' with MHD termination code 0
+2023-02-06T08:41:16.075184-0500 .libs/test_merchant_api_cs-16942 INFO Reserve 
public key does not match, got 63QEDH9A
+2023-02-06T08:41:16.076298-0500 .libs/test_merchant_api_cs-16942 INFO Reserve 
public key does not match, expected EES4FVKM
+2023-02-06T08:41:16.077464-0500 .libs/test_merchant_api_cs-16942 INFO Reserve 
initial amount does not match, got EUR:20.04
+2023-02-06T08:41:16.078468-0500 .libs/test_merchant_api_cs-16942 INFO Reserve 
initial amount does not match, wanted EUR:1.04
+2023-02-06T08:41:16.079255-0500 .libs/test_merchant_api_cs-16942 INFO Reserve 
public key does not match, got EES4FVKM
+2023-02-06T08:41:16.079665-0500 .libs/test_merchant_api_cs-16942 INFO Reserve 
public key does not match, expected 63QEDH9A
+2023-02-06T08:41:16.080005-0500 .libs/test_merchant_api_cs-16942 INFO Reserve 
initial amount does not match, got EUR:1.04
+2023-02-06T08:41:16.080330-0500 .libs/test_merchant_api_cs-16942 INFO Reserve 
initial amount does not match, wanted EUR:20.04
+2023-02-06T08:41:16.081484-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:16.081714-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: delete-reserve-tip-1
+2023-02-06T08:41:16.088181-0500 
taler-merchant-httpd-17112(JWAR28RJ60JAVN7C46578NN4ZC) INFO Handling request 
(DELETE) for URL 
'/private/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0'
+2023-02-06T08:41:16.095668-0500 
taler-merchant-httpd-17112(JWAR28RJ60JAVN7C46578NN4ZC) INFO Finished handling 
request for 
`/private/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0' with 
MHD termination code 0
+2023-02-06T08:41:16.098996-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:16.099241-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: delete-reserve-tip-2
+2023-02-06T08:41:16.103740-0500 
taler-merchant-httpd-17112(F48HC3WK50Y4AV75XRCMSXP69W) INFO Handling request 
(DELETE) for URL 
'/private/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0'
+2023-02-06T08:41:16.117291-0500 
taler-merchant-httpd-17112(F48HC3WK50Y4AV75XRCMSXP69W) INFO Finished handling 
request for 
`/private/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0' with 
MHD termination code 0
+2023-02-06T08:41:16.118375-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:16.118728-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: delete-reserve-tip-3
+2023-02-06T08:41:16.122755-0500 
taler-merchant-httpd-17112(52TZQGXFQCHQ3GYQA2CZ5HK0P4) INFO Handling request 
(DELETE) for URL 
'/private/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0'
+2023-02-06T08:41:16.125900-0500 
taler-merchant-httpd-17112(52TZQGXFQCHQ3GYQA2CZ5HK0P4) INFO Finished handling 
request for 
`/private/reserves/QM55KQF9SHBBHXZF49ZM3K1PTM7X047QAE5ADY23F34QP0C12XJ0' with 
MHD termination code 0
+2023-02-06T08:41:16.128639-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `tip'
+2023-02-06T08:41:16.128881-0500 .libs/test_merchant_api_cs-16942 INFO Exiting 
from batch: tip
+2023-02-06T08:41:16.129215-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.129428-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: instance-create-i1a
+2023-02-06T08:41:16.137018-0500 
taler-merchant-httpd-17112(MQ495QAPCET2X2NSFQ1HTVXND8) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T08:41:16.145866-0500 
taler-merchant-httpd-17112(MQ495QAPCET2X2NSFQ1HTVXND8) INFO Starting merchant 
DB transaction `post /instances'
+2023-02-06T08:41:16.148450-0500 
taler-merchant-httpd-17112(MQ495QAPCET2X2NSFQ1HTVXND8) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T08:41:16.161209-0500 
taler-merchant-httpd-17112(MQ495QAPCET2X2NSFQ1HTVXND8) INFO Generating instance 
settings notification: reload `i1a'
+2023-02-06T08:41:16.161568-0500 
taler-merchant-httpd-17112(MQ495QAPCET2X2NSFQ1HTVXND8) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RP200''
+2023-02-06T08:41:16.162241-0500 
taler-merchant-httpd-17112(MQ495QAPCET2X2NSFQ1HTVXND8) INFO PG poll job active
+2023-02-06T08:41:16.162648-0500 
taler-merchant-httpd-17112(MQ495QAPCET2X2NSFQ1HTVXND8) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1a'
+2023-02-06T08:41:16.162916-0500 
taler-merchant-httpd-17112(MQ495QAPCET2X2NSFQ1HTVXND8) INFO Received instance 
settings notification: reload `i1a'
+2023-02-06T08:41:16.165556-0500 
taler-merchant-httpd-17112(MQ495QAPCET2X2NSFQ1HTVXND8) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:41:16.166169-0500 
taler-merchant-httpd-17112(MQ495QAPCET2X2NSFQ1HTVXND8) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T08:41:16.166806-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/management/instances completed with response code 204
+2023-02-06T08:41:16.167637-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.167854-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-nx-product-i1a-1
+2023-02-06T08:41:16.171061-0500 
taler-merchant-httpd-17112(03JT1WB38YYC6YTWVYYH7TTCMC) INFO Handling request 
(GET) for URL '/instances/i1a/private/products/nx-product'
+2023-02-06T08:41:16.173834-0500 
taler-merchant-httpd-17112(03JT1WB38YYC6YTWVYYH7TTCMC) INFO Finished handling 
request for `/instances/i1a/private/products/nx-product' with MHD termination 
code 0
+2023-02-06T08:41:16.176783-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.177022-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-i1a-products-empty-1
+2023-02-06T08:41:16.180133-0500 
taler-merchant-httpd-17112(5278JPNW9HRRP46AT2G7B7845M) INFO Handling request 
(GET) for URL '/instances/i1a/private/products'
+2023-02-06T08:41:16.182386-0500 
taler-merchant-httpd-17112(5278JPNW9HRRP46AT2G7B7845M) INFO Finished handling 
request for `/instances/i1a/private/products' with MHD termination code 0
+2023-02-06T08:41:16.183826-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.184053-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-nx-product-i1a-2
+2023-02-06T08:41:16.187299-0500 
taler-merchant-httpd-17112(R7R15TXJZ9KTSNZMH3BT2FHTK4) INFO Handling request 
(GET) for URL '/instances/i1a/private/products/nx-product'
+2023-02-06T08:41:16.190213-0500 
taler-merchant-httpd-17112(R7R15TXJZ9KTSNZMH3BT2FHTK4) INFO Finished handling 
request for `/instances/i1a/private/products/nx-product' with MHD termination 
code 0
+2023-02-06T08:41:16.193133-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.193366-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-i1a-products-empty-2
+2023-02-06T08:41:16.197031-0500 
taler-merchant-httpd-17112(MK1ZDE90NA0JP5DV40QYYQVPVG) INFO Handling request 
(GET) for URL '/instances/i1a/private/products'
+2023-02-06T08:41:16.199726-0500 
taler-merchant-httpd-17112(MK1ZDE90NA0JP5DV40QYYQVPVG) INFO Finished handling 
request for `/instances/i1a/private/products' with MHD termination code 0
+2023-02-06T08:41:16.201116-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.201345-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: instance-create-i1a-auth-ok
+2023-02-06T08:41:16.212260-0500 
taler-merchant-httpd-17112(GZPK7NXRPRFJM5KMJE35RJ64Q4) INFO Handling request 
(POST) for URL '/management/instances/i1a/auth'
+2023-02-06T08:41:16.218777-0500 
taler-merchant-httpd-17112(GZPK7NXRPRFJM5KMJE35RJ64Q4) INFO Starting merchant 
DB transaction `post /instances/$ID/auth'
+2023-02-06T08:41:16.223758-0500 
taler-merchant-httpd-17112(GZPK7NXRPRFJM5KMJE35RJ64Q4) INFO Committing merchant 
DB transaction post /instances/$ID/auth
+2023-02-06T08:41:16.228813-0500 
taler-merchant-httpd-17112(GZPK7NXRPRFJM5KMJE35RJ64Q4) INFO Generating instance 
settings notification: reload `i1a'
+2023-02-06T08:41:16.229177-0500 
taler-merchant-httpd-17112(GZPK7NXRPRFJM5KMJE35RJ64Q4) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RP200''
+2023-02-06T08:41:16.229872-0500 
taler-merchant-httpd-17112(GZPK7NXRPRFJM5KMJE35RJ64Q4) INFO PG poll job active
+2023-02-06T08:41:16.230262-0500 
taler-merchant-httpd-17112(GZPK7NXRPRFJM5KMJE35RJ64Q4) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1a'
+2023-02-06T08:41:16.230551-0500 
taler-merchant-httpd-17112(GZPK7NXRPRFJM5KMJE35RJ64Q4) INFO Received instance 
settings notification: reload `i1a'
+2023-02-06T08:41:16.233311-0500 
taler-merchant-httpd-17112(GZPK7NXRPRFJM5KMJE35RJ64Q4) INFO PG poll job 
finishes after 1 events
+==17112== Invalid write of size 1
+==17112==    at 0x1322D0: TMH_private_post_instances_default_ID_auth 
(taler-merchant-httpd_private-post-instances-ID-auth.c:234)
+==17112==    by 0x491BFB0: ??? (in 
/usr/lib/x86_64-linux-gnu/libmicrohttpd.so.12.57.0)
+==17112==    by 0x491DDF7: ??? (in 
/usr/lib/x86_64-linux-gnu/libmicrohttpd.so.12.57.0)
+==17112==    by 0x491FDAD: ??? (in 
/usr/lib/x86_64-linux-gnu/libmicrohttpd.so.12.57.0)
+==17112==    by 0x49250F0: ??? (in 
/usr/lib/x86_64-linux-gnu/libmicrohttpd.so.12.57.0)
+==17112==    by 0x4926189: MHD_run (in 
/usr/lib/x86_64-linux-gnu/libmicrohttpd.so.12.57.0)
+==17112==    by 0x48A7642: run_daemon (mhd_run.c:68)
+==17112==    by 0x49BFD72: GNUNET_SCHEDULER_do_work (in 
/usr/lib/x86_64-linux-gnu/libgnunetutil.so.15.0.0)
+==17112==    by 0x49C0BB2: GNUNET_SCHEDULER_run (in 
/usr/lib/x86_64-linux-gnu/libgnunetutil.so.15.0.0)
+==17112==    by 0x49B72E4: GNUNET_PROGRAM_run2 (in 
/usr/lib/x86_64-linux-gnu/libgnunetutil.so.15.0.0)
+==17112==    by 0x49B78DE: GNUNET_PROGRAM_run (in 
/usr/lib/x86_64-linux-gnu/libgnunetutil.so.15.0.0)
+==17112==    by 0x111620: main (taler-merchant-httpd.c:2083)
+==17112==  Address 0x6b84c4d is 397 bytes inside a block of size 400 free'd
+==17112==    at 0x48399AB: free (vg_replace_malloc.c:538)
+==17112==    by 0x112387: TMH_instance_decref (taler-merchant-httpd.c:1838)
+==17112==    by 0x112387: TMH_instance_free_cb (taler-merchant-httpd.c:270)
+==17112==    by 0x112387: load_instances (taler-merchant-httpd.c:1826)
+==17112==    by 0x490A7E7: ??? (in 
/usr/lib/x86_64-linux-gnu/libgnunetpq.so.3.0.0)
+==17112==    by 0x498D3F9: GNUNET_CONTAINER_multishortmap_get_multiple (in 
/usr/lib/x86_64-linux-gnu/libgnunetutil.so.15.0.0)
+==17112==    by 0x490AC5D: ??? (in 
/usr/lib/x86_64-linux-gnu/libgnunetpq.so.3.0.0)
+==17112==    by 0x490B94F: GNUNET_PQ_event_notify (in 
/usr/lib/x86_64-linux-gnu/libgnunetpq.so.3.0.0)
+==17112==    by 0x1146D2: TMH_reload_instances (taler-merchant-httpd.c:1865)
+==17112==    by 0x1320CB: post_instances_ID_auth 
(taler-merchant-httpd_private-post-instances-ID-auth.c:192)
+==17112==    by 0x1322CF: TMH_private_post_instances_default_ID_auth 
(taler-merchant-httpd_private-post-instances-ID-auth.c:231)
+==17112==    by 0x491BFB0: ??? (in 
/usr/lib/x86_64-linux-gnu/libmicrohttpd.so.12.57.0)
+==17112==    by 0x491DDF7: ??? (in 
/usr/lib/x86_64-linux-gnu/libmicrohttpd.so.12.57.0)
+==17112==    by 0x491FDAD: ??? (in 
/usr/lib/x86_64-linux-gnu/libmicrohttpd.so.12.57.0)
+==17112==  Block was alloc'd at
+==17112==    at 0x483AB65: calloc (vg_replace_malloc.c:760)
+==17112==    by 0x497D32A: GNUNET_xmalloc_ (in 
/usr/lib/x86_64-linux-gnu/libgnunetutil.so.15.0.0)
+==17112==    by 0x1141F5: add_instance_cb (taler-merchant-httpd.c:1742)
+==17112==    by 0x77F4CA7: call_with_accounts 
(plugin_merchantdb_postgres.c:475)
+==17112==    by 0x77F82FF: lookup_accounts_cb 
(plugin_merchantdb_postgres.c:531)
+==17112==    by 0x490A63F: GNUNET_PQ_eval_prepared_multi_select (in 
/usr/lib/x86_64-linux-gnu/libgnunetpq.so.3.0.0)
+==17112==    by 0x77F9F0F: lookup_instances_cb 
(plugin_merchantdb_postgres.c:624)
+==17112==    by 0x490A63F: GNUNET_PQ_eval_prepared_multi_select (in 
/usr/lib/x86_64-linux-gnu/libgnunetpq.so.3.0.0)
+==17112==    by 0x77EE8F2: postgres_lookup_instance 
(plugin_merchantdb_postgres.c:712)
+==17112==    by 0x1122C0: load_instances (taler-merchant-httpd.c:1830)
+==17112==    by 0x490A7E7: ??? (in 
/usr/lib/x86_64-linux-gnu/libgnunetpq.so.3.0.0)
+==17112==    by 0x498D3F9: GNUNET_CONTAINER_multishortmap_get_multiple (in 
/usr/lib/x86_64-linux-gnu/libgnunetutil.so.15.0.0)
+==17112== 
+2023-02-06T08:41:16.237458-0500 
taler-merchant-httpd-17112(GZPK7NXRPRFJM5KMJE35RJ64Q4) INFO Finished handling 
request for `/management/instances/i1a/auth' with MHD termination code 0
+2023-02-06T08:41:16.240776-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.241036-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-nx-product-i1a-3
+2023-02-06T08:41:16.244254-0500 
taler-merchant-httpd-17112(CJNJHAHCANR2R1PN3W39B1218G) INFO Handling request 
(GET) for URL '/instances/i1a/private/products/nx-product'
+2023-02-06T08:41:16.246722-0500 
taler-merchant-httpd-17112(CJNJHAHCANR2R1PN3W39B1218G) INFO Finished handling 
request for `/instances/i1a/private/products/nx-product' with MHD termination 
code 0
+2023-02-06T08:41:16.249780-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.250011-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-i1a-products-empty-3
+2023-02-06T08:41:16.253609-0500 
taler-merchant-httpd-17112(F0TA7HTY2XJ1AAQQH0JE50K80G) INFO Handling request 
(GET) for URL '/instances/i1a/private/products'
+2023-02-06T08:41:16.255907-0500 
taler-merchant-httpd-17112(F0TA7HTY2XJ1AAQQH0JE50K80G) INFO Finished handling 
request for `/instances/i1a/private/products' with MHD termination code 0
+2023-02-06T08:41:16.259360-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.259597-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: set-auth-valid
+2023-02-06T08:41:16.262300-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.262550-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-nx-product-i1a-4
+2023-02-06T08:41:16.268912-0500 
taler-merchant-httpd-17112(VVP6S8718CMEXEAC6WHR6JCYDC) INFO Handling request 
(GET) for URL '/instances/i1a/private/products/nx-product'
+2023-02-06T08:41:16.278160-0500 
taler-merchant-httpd-17112(VVP6S8718CMEXEAC6WHR6JCYDC) INFO Finished handling 
request for `/instances/i1a/private/products/nx-product' with MHD termination 
code 0
+2023-02-06T08:41:16.280587-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.280828-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-i1a-products-empty-4
+2023-02-06T08:41:16.284608-0500 
taler-merchant-httpd-17112(YQC1TJ8209N5ERB8YEV2EWX6FM) INFO Handling request 
(GET) for URL '/instances/i1a/private/products'
+2023-02-06T08:41:16.288204-0500 
taler-merchant-httpd-17112(YQC1TJ8209N5ERB8YEV2EWX6FM) INFO Finished handling 
request for `/instances/i1a/private/products' with MHD termination code 0
+2023-02-06T08:41:16.289401-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.289634-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: instance-create-i1a-change-auth
+2023-02-06T08:41:16.296709-0500 
taler-merchant-httpd-17112(PNQAHYKGNBDQQKZGQ3QMBR9XMM) INFO Handling request 
(POST) for URL '/instances/i1a/private/auth'
+2023-02-06T08:41:16.299982-0500 
taler-merchant-httpd-17112(PNQAHYKGNBDQQKZGQ3QMBR9XMM) INFO Starting merchant 
DB transaction `post /instances/$ID/auth'
+2023-02-06T08:41:16.304017-0500 
taler-merchant-httpd-17112(PNQAHYKGNBDQQKZGQ3QMBR9XMM) INFO Committing merchant 
DB transaction post /instances/$ID/auth
+2023-02-06T08:41:16.316721-0500 
taler-merchant-httpd-17112(PNQAHYKGNBDQQKZGQ3QMBR9XMM) INFO Generating instance 
settings notification: reload `i1a'
+2023-02-06T08:41:16.317080-0500 
taler-merchant-httpd-17112(PNQAHYKGNBDQQKZGQ3QMBR9XMM) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RP200''
+2023-02-06T08:41:16.317787-0500 
taler-merchant-httpd-17112(PNQAHYKGNBDQQKZGQ3QMBR9XMM) INFO PG poll job active
+2023-02-06T08:41:16.318175-0500 
taler-merchant-httpd-17112(PNQAHYKGNBDQQKZGQ3QMBR9XMM) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1a'
+2023-02-06T08:41:16.318441-0500 
taler-merchant-httpd-17112(PNQAHYKGNBDQQKZGQ3QMBR9XMM) INFO Received instance 
settings notification: reload `i1a'
+2023-02-06T08:41:16.321171-0500 
taler-merchant-httpd-17112(PNQAHYKGNBDQQKZGQ3QMBR9XMM) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:41:16.321798-0500 
taler-merchant-httpd-17112(PNQAHYKGNBDQQKZGQ3QMBR9XMM) INFO Finished handling 
request for `/instances/i1a/private/auth' with MHD termination code 0
+2023-02-06T08:41:16.322735-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.322975-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-nx-product-i1a-5
+2023-02-06T08:41:16.326220-0500 
taler-merchant-httpd-17112(E9FWGDX635BHN1BWXEGG10EWN0) INFO Handling request 
(GET) for URL '/instances/i1a/private/products/nx-product'
+2023-02-06T08:41:16.330039-0500 
taler-merchant-httpd-17112(E9FWGDX635BHN1BWXEGG10EWN0) INFO Finished handling 
request for `/instances/i1a/private/products/nx-product' with MHD termination 
code 0
+2023-02-06T08:41:16.331739-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.331963-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-i1a-products-empty-5
+2023-02-06T08:41:16.335680-0500 
taler-merchant-httpd-17112(T2BA298R72RMVSDFB4YSPKQFVW) INFO Handling request 
(GET) for URL '/instances/i1a/private/products'
+2023-02-06T08:41:16.338913-0500 
taler-merchant-httpd-17112(T2BA298R72RMVSDFB4YSPKQFVW) INFO Finished handling 
request for `/instances/i1a/private/products' with MHD termination code 0
+2023-02-06T08:41:16.340488-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.340708-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: instance-delete-i1a-fail
+2023-02-06T08:41:16.344949-0500 
taler-merchant-httpd-17112(CMGYKS7WGXQ6A92AYWE30RAVWG) INFO Handling request 
(DELETE) for URL '/instances/i1a/private'
+2023-02-06T08:41:16.348085-0500 
taler-merchant-httpd-17112(CMGYKS7WGXQ6A92AYWE30RAVWG) INFO Finished handling 
request for `/instances/i1a/private' with MHD termination code 0
+2023-02-06T08:41:16.350263-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.350558-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: set-auth-valid-again
+2023-02-06T08:41:16.351147-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.351365-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: instance-create-i1a-auth-ok-idempotent
+2023-02-06T08:41:16.357780-0500 
taler-merchant-httpd-17112(061DTDMWWTJMPC3NQ9748ZNCCW) INFO Handling request 
(POST) for URL '/instances/i1a/private/auth'
+2023-02-06T08:41:16.360686-0500 
taler-merchant-httpd-17112(061DTDMWWTJMPC3NQ9748ZNCCW) INFO Starting merchant 
DB transaction `post /instances/$ID/auth'
+2023-02-06T08:41:16.363908-0500 
taler-merchant-httpd-17112(061DTDMWWTJMPC3NQ9748ZNCCW) INFO Committing merchant 
DB transaction post /instances/$ID/auth
+2023-02-06T08:41:16.372390-0500 
taler-merchant-httpd-17112(061DTDMWWTJMPC3NQ9748ZNCCW) INFO Generating instance 
settings notification: reload `i1a'
+2023-02-06T08:41:16.372771-0500 
taler-merchant-httpd-17112(061DTDMWWTJMPC3NQ9748ZNCCW) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RP200''
+2023-02-06T08:41:16.373518-0500 
taler-merchant-httpd-17112(061DTDMWWTJMPC3NQ9748ZNCCW) INFO PG poll job active
+2023-02-06T08:41:16.373906-0500 
taler-merchant-httpd-17112(061DTDMWWTJMPC3NQ9748ZNCCW) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1a'
+2023-02-06T08:41:16.374170-0500 
taler-merchant-httpd-17112(061DTDMWWTJMPC3NQ9748ZNCCW) INFO Received instance 
settings notification: reload `i1a'
+2023-02-06T08:41:16.377115-0500 
taler-merchant-httpd-17112(061DTDMWWTJMPC3NQ9748ZNCCW) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:41:16.377761-0500 
taler-merchant-httpd-17112(061DTDMWWTJMPC3NQ9748ZNCCW) INFO Finished handling 
request for `/instances/i1a/private/auth' with MHD termination code 0
+2023-02-06T08:41:16.378789-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.379039-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: instance-create-i1a-clear-auth
+2023-02-06T08:41:16.383893-0500 
taler-merchant-httpd-17112(WH2632HWRKCJMVYMG60GX7AM8R) INFO Handling request 
(POST) for URL '/instances/i1a/private/auth'
+2023-02-06T08:41:16.386141-0500 
taler-merchant-httpd-17112(WH2632HWRKCJMVYMG60GX7AM8R) INFO Starting merchant 
DB transaction `post /instances/$ID/auth'
+2023-02-06T08:41:16.388635-0500 
taler-merchant-httpd-17112(WH2632HWRKCJMVYMG60GX7AM8R) INFO Committing merchant 
DB transaction post /instances/$ID/auth
+2023-02-06T08:41:16.394581-0500 
taler-merchant-httpd-17112(WH2632HWRKCJMVYMG60GX7AM8R) INFO Generating instance 
settings notification: reload `i1a'
+2023-02-06T08:41:16.394941-0500 
taler-merchant-httpd-17112(WH2632HWRKCJMVYMG60GX7AM8R) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RP200''
+2023-02-06T08:41:16.395650-0500 
taler-merchant-httpd-17112(WH2632HWRKCJMVYMG60GX7AM8R) INFO PG poll job active
+2023-02-06T08:41:16.396035-0500 
taler-merchant-httpd-17112(WH2632HWRKCJMVYMG60GX7AM8R) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1a'
+2023-02-06T08:41:16.396299-0500 
taler-merchant-httpd-17112(WH2632HWRKCJMVYMG60GX7AM8R) INFO Received instance 
settings notification: reload `i1a'
+2023-02-06T08:41:16.398890-0500 
taler-merchant-httpd-17112(WH2632HWRKCJMVYMG60GX7AM8R) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:41:16.399507-0500 
taler-merchant-httpd-17112(WH2632HWRKCJMVYMG60GX7AM8R) INFO Finished handling 
request for `/instances/i1a/private/auth' with MHD termination code 0
+2023-02-06T08:41:16.400399-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.400632-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: set-auth-none
+2023-02-06T08:41:16.401181-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.401392-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: instance-delete-i1a
+2023-02-06T08:41:16.407523-0500 
taler-merchant-httpd-17112(5V9JBV1GQ4GGMBR347N3DBJSN4) INFO Handling request 
(DELETE) for URL '/instances/i1a/private'
+2023-02-06T08:41:16.416770-0500 
taler-merchant-httpd-17112(5V9JBV1GQ4GGMBR347N3DBJSN4) INFO Generating instance 
settings notification: reload `i1a'
+2023-02-06T08:41:16.417131-0500 
taler-merchant-httpd-17112(5V9JBV1GQ4GGMBR347N3DBJSN4) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RP200''
+2023-02-06T08:41:16.417800-0500 
taler-merchant-httpd-17112(5V9JBV1GQ4GGMBR347N3DBJSN4) INFO PG poll job active
+2023-02-06T08:41:16.418176-0500 
taler-merchant-httpd-17112(5V9JBV1GQ4GGMBR347N3DBJSN4) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1a'
+2023-02-06T08:41:16.418439-0500 
taler-merchant-httpd-17112(5V9JBV1GQ4GGMBR347N3DBJSN4) INFO Received instance 
settings notification: reload `i1a'
+2023-02-06T08:41:16.419461-0500 
taler-merchant-httpd-17112(5V9JBV1GQ4GGMBR347N3DBJSN4) INFO PG poll job 
finishes after 1 events
+2023-02-06T08:41:16.420077-0500 
taler-merchant-httpd-17112(5V9JBV1GQ4GGMBR347N3DBJSN4) INFO Finished handling 
request for `/instances/i1a/private' with MHD termination code 0
+2023-02-06T08:41:16.421033-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `auth'
+2023-02-06T08:41:16.421262-0500 .libs/test_merchant_api_cs-16942 INFO Exiting 
from batch: auth
+2023-02-06T08:41:16.421581-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.421786-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-templates-empty
+2023-02-06T08:41:16.425577-0500 .libs/test_merchant_api_cs-16942 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:16.427248-0500 
taler-merchant-httpd-17112(A3K5P11ESKQ0129S3V70N5V0S0) INFO Handling request 
(GET) for URL '/private/templates'
+2023-02-06T08:41:16.432166-0500 
taler-merchant-httpd-17112(A3K5P11ESKQ0129S3V70N5V0S0) INFO Finished handling 
request for `/private/templates' with MHD termination code 0
+2023-02-06T08:41:16.443148-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.443426-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: post-templates-t1
+2023-02-06T08:41:16.453919-0500 
taler-merchant-httpd-17112(VW06Q9SPEPGH72RKDSVPGGR6C8) INFO Handling request 
(POST) for URL '/private/templates'
+2023-02-06T08:41:16.459012-0500 
taler-merchant-httpd-17112(VW06Q9SPEPGH72RKDSVPGGR6C8) INFO Starting merchant 
DB transaction `/post templates'
+2023-02-06T08:41:16.465922-0500 
taler-merchant-httpd-17112(VW06Q9SPEPGH72RKDSVPGGR6C8) INFO Committing merchant 
DB transaction /post templates
+2023-02-06T08:41:16.473404-0500 
taler-merchant-httpd-17112(VW06Q9SPEPGH72RKDSVPGGR6C8) INFO Finished handling 
request for `/private/templates' with MHD termination code 0
+2023-02-06T08:41:16.475048-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/templates completed with response code 204
+2023-02-06T08:41:16.477568-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.477784-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: post-templates-t1-idem
+2023-02-06T08:41:16.482554-0500 
taler-merchant-httpd-17112(TS40BYZVVNHSZFEDE9Z2M065JM) INFO Handling request 
(POST) for URL '/private/templates'
+2023-02-06T08:41:16.483763-0500 
taler-merchant-httpd-17112(TS40BYZVVNHSZFEDE9Z2M065JM) INFO Starting merchant 
DB transaction `/post templates'
+2023-02-06T08:41:16.487526-0500 
taler-merchant-httpd-17112(TS40BYZVVNHSZFEDE9Z2M065JM) INFO Rolling back 
merchant DB transaction `/post templates'
+2023-02-06T08:41:16.488517-0500 
taler-merchant-httpd-17112(TS40BYZVVNHSZFEDE9Z2M065JM) INFO Finished handling 
request for `/private/templates' with MHD termination code 0
+2023-02-06T08:41:16.489008-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/templates completed with response code 204
+2023-02-06T08:41:16.489474-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.489670-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: post-templates-t1-non-idem
+2023-02-06T08:41:16.495086-0500 
taler-merchant-httpd-17112(JG5323P0GDZ8RRR7SB0P47Z1N4) INFO Handling request 
(POST) for URL '/private/templates'
+2023-02-06T08:41:16.496443-0500 
taler-merchant-httpd-17112(JG5323P0GDZ8RRR7SB0P47Z1N4) INFO Starting merchant 
DB transaction `/post templates'
+2023-02-06T08:41:16.498109-0500 
taler-merchant-httpd-17112(JG5323P0GDZ8RRR7SB0P47Z1N4) INFO Rolling back 
merchant DB transaction `/post templates'
+2023-02-06T08:41:16.500789-0500 
taler-merchant-httpd-17112(JG5323P0GDZ8RRR7SB0P47Z1N4) INFO Finished handling 
request for `/private/templates' with MHD termination code 0
+2023-02-06T08:41:16.501946-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/templates completed with response code 409
+2023-02-06T08:41:16.503139-0500 .libs/test_merchant_api_cs-16942 ERROR 
Unexpected response code 409/2850
+2023-02-06T08:41:16.503992-0500 .libs/test_merchant_api_cs-16942 WARNING 
External protocol violation detected at merchant_api_post_templates.c:147.
+2023-02-06T08:41:16.505731-0500 .libs/test_merchant_api_cs-16942 ERROR 
Assertion failed at testing_api_cmd_post_templates.c:114.
+2023-02-06T08:41:16.506691-0500 .libs/test_merchant_api_cs-16942 WARNING 
Unhandled HTTP status 409 for POST /templates.
+2023-02-06T08:41:16.507373-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.507586-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-templates-t1
+2023-02-06T08:41:16.510748-0500 
taler-merchant-httpd-17112(04T0K5RXRT65P42RFDCN2XGHN8) INFO Handling request 
(GET) for URL '/private/templates'
+2023-02-06T08:41:16.515321-0500 
taler-merchant-httpd-17112(04T0K5RXRT65P42RFDCN2XGHN8) INFO Finished handling 
request for `/private/templates' with MHD termination code 0
+2023-02-06T08:41:16.521018-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.521275-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-template-t1
+2023-02-06T08:41:16.526444-0500 
taler-merchant-httpd-17112(B81E3XQMD1YM9FTZSVEY5VHETR) INFO Handling request 
(GET) for URL '/private/templates/template-1'
+2023-02-06T08:41:16.531872-0500 
taler-merchant-httpd-17112(B81E3XQMD1YM9FTZSVEY5VHETR) INFO Finished handling 
request for `/private/templates/template-1' with MHD termination code 0
+2023-02-06T08:41:16.539549-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.539783-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: post-templates-t2
+2023-02-06T08:41:16.544978-0500 
taler-merchant-httpd-17112(P6WJ2NA8XVEF3B7K7WD1X63GE4) INFO Handling request 
(POST) for URL '/private/templates'
+2023-02-06T08:41:16.546128-0500 
taler-merchant-httpd-17112(P6WJ2NA8XVEF3B7K7WD1X63GE4) INFO Starting merchant 
DB transaction `/post templates'
+2023-02-06T08:41:16.548180-0500 
taler-merchant-httpd-17112(P6WJ2NA8XVEF3B7K7WD1X63GE4) INFO Committing merchant 
DB transaction /post templates
+2023-02-06T08:41:16.561479-0500 
taler-merchant-httpd-17112(P6WJ2NA8XVEF3B7K7WD1X63GE4) INFO Finished handling 
request for `/private/templates' with MHD termination code 0
+2023-02-06T08:41:16.562018-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/templates completed with response code 204
+2023-02-06T08:41:16.562611-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.562837-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: patch-templates-t2
+2023-02-06T08:41:16.571514-0500 
taler-merchant-httpd-17112(C6ZAJJMV6YQS4XNN41G8MMKYK0) INFO Handling request 
(PATCH) for URL '/private/templates/template-2'
+2023-02-06T08:41:16.584700-0500 
taler-merchant-httpd-17112(C6ZAJJMV6YQS4XNN41G8MMKYK0) INFO Finished handling 
request for `/private/templates/template-2' with MHD termination code 0
+2023-02-06T08:41:16.586131-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/templates/$ID completed with response code 204
+2023-02-06T08:41:16.588479-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.588696-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-template-t2
+2023-02-06T08:41:16.591909-0500 
taler-merchant-httpd-17112(G3EX4B8FKP11QS42YWXTHKNMQC) INFO Handling request 
(GET) for URL '/private/templates/template-2'
+2023-02-06T08:41:16.595247-0500 
taler-merchant-httpd-17112(G3EX4B8FKP11QS42YWXTHKNMQC) INFO Finished handling 
request for `/private/templates/template-2' with MHD termination code 0
+2023-02-06T08:41:16.598558-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.598801-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-template-nx
+2023-02-06T08:41:16.602473-0500 
taler-merchant-httpd-17112(9W33SWFBPVGFMH08J9R9NY8K8C) INFO Handling request 
(GET) for URL '/private/templates/template-nx'
+2023-02-06T08:41:16.605483-0500 
taler-merchant-httpd-17112(9W33SWFBPVGFMH08J9R9NY8K8C) INFO Finished handling 
request for `/private/templates/template-nx' with MHD termination code 0
+2023-02-06T08:41:16.607831-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.608058-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: patch-templates-t3-nx
+2023-02-06T08:41:16.613077-0500 
taler-merchant-httpd-17112(SJXSDZP2QTKSH9CED5W2536008) INFO Handling request 
(PATCH) for URL '/private/templates/template-3'
+2023-02-06T08:41:16.617774-0500 
taler-merchant-httpd-17112(SJXSDZP2QTKSH9CED5W2536008) INFO Finished handling 
request for `/private/templates/template-3' with MHD termination code 0
+2023-02-06T08:41:16.619236-0500 .libs/test_merchant_api_cs-16942 INFO PATCH 
/templates/$ID completed with response code 404
+2023-02-06T08:41:16.620683-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.620897-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: post-templates-t3-amount
+2023-02-06T08:41:16.625747-0500 
taler-merchant-httpd-17112(HRT9SYKPK46T89TH15MPPWQWA4) INFO Handling request 
(POST) for URL '/private/templates'
+2023-02-06T08:41:16.627006-0500 
taler-merchant-httpd-17112(HRT9SYKPK46T89TH15MPPWQWA4) INFO Starting merchant 
DB transaction `/post templates'
+2023-02-06T08:41:16.628810-0500 
taler-merchant-httpd-17112(HRT9SYKPK46T89TH15MPPWQWA4) INFO Committing merchant 
DB transaction /post templates
+2023-02-06T08:41:16.639222-0500 
taler-merchant-httpd-17112(HRT9SYKPK46T89TH15MPPWQWA4) INFO Finished handling 
request for `/private/templates' with MHD termination code 0
+2023-02-06T08:41:16.639766-0500 .libs/test_merchant_api_cs-16942 INFO POST 
/templates completed with response code 204
+2023-02-06T08:41:16.640260-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.640470-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: using-templates-t1
+2023-02-06T08:41:16.649896-0500 
taler-merchant-httpd-17112(NE5XD3KQ7WDJ8A8KPDWV89W8YC) INFO Handling request 
(POST) for URL '/templates/template-1'
+2023-02-06T08:41:16.662541-0500 
taler-merchant-httpd-17112(NE5XD3KQ7WDJ8A8KPDWV89W8YC) INFO Assigning order ID 
`2023.037-03P3BWWAYPD7J' server-side
+2023-02-06T08:41:16.663691-0500 
taler-merchant-httpd-17112(NE5XD3KQ7WDJ8A8KPDWV89W8YC) INFO Refund delay is 
zero, no refunds are possible for this order
+2023-02-06T08:41:16.669738-0500 
taler-merchant-httpd-17112(NE5XD3KQ7WDJ8A8KPDWV89W8YC) INFO Starting merchant 
DB transaction `insert_order'
+2023-02-06T08:41:16.672486-0500 
taler-merchant-httpd-17112(NE5XD3KQ7WDJ8A8KPDWV89W8YC) INFO Notifying clients 
of new order 13 at GRJQ5BC0
+2023-02-06T08:41:16.672862-0500 
taler-merchant-httpd-17112(NE5XD3KQ7WDJ8A8KPDWV89W8YC) INFO Executing command 
`NOTIFY X8VTR0DZHCPKWQ65A82FG0PH5H926ADZ0XSR0F3SGHW8Z9J7827Y0, 
'000000000000T005YG42YTPQ00000000''
+2023-02-06T08:41:16.673368-0500 
taler-merchant-httpd-17112(NE5XD3KQ7WDJ8A8KPDWV89W8YC) INFO PG poll job active
+2023-02-06T08:41:16.673701-0500 
taler-merchant-httpd-17112(NE5XD3KQ7WDJ8A8KPDWV89W8YC) INFO PG poll job 
finishes after 0 events
+2023-02-06T08:41:16.673953-0500 
taler-merchant-httpd-17112(NE5XD3KQ7WDJ8A8KPDWV89W8YC) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T08:41:16.685597-0500 
taler-merchant-httpd-17112(NE5XD3KQ7WDJ8A8KPDWV89W8YC) INFO Finished handling 
request for `/templates/template-1' with MHD termination code 0
+2023-02-06T08:41:16.688489-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.688734-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: using-templates-t1-amount-missing
+2023-02-06T08:41:16.693870-0500 
taler-merchant-httpd-17112(3SRCEZM9H23WA7KK61C9ZZ6008) INFO Handling request 
(POST) for URL '/templates/template-1'
+2023-02-06T08:41:16.697563-0500 
taler-merchant-httpd-17112(3SRCEZM9H23WA7KK61C9ZZ6008) INFO Finished handling 
request for `/templates/template-1' with MHD termination code 0
+2023-02-06T08:41:16.699157-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.699393-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: using-templates-t1-summary-missing
+2023-02-06T08:41:16.703818-0500 
taler-merchant-httpd-17112(F1YCQ2K2WFWEM67EWX1FGXW2AR) INFO Handling request 
(POST) for URL '/templates/template-1'
+2023-02-06T08:41:16.708577-0500 
taler-merchant-httpd-17112(F1YCQ2K2WFWEM67EWX1FGXW2AR) INFO Finished handling 
request for `/templates/template-1' with MHD termination code 0
+2023-02-06T08:41:16.710178-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.710411-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: using-templates-t1-amount-conflict
+2023-02-06T08:41:16.714881-0500 
taler-merchant-httpd-17112(7AB2YYYJ67XA2HNXH5KAJYW0S8) INFO Handling request 
(POST) for URL '/templates/template-amount'
+2023-02-06T08:41:16.719591-0500 
taler-merchant-httpd-17112(7AB2YYYJ67XA2HNXH5KAJYW0S8) INFO Finished handling 
request for `/templates/template-amount' with MHD termination code 0
+2023-02-06T08:41:16.721130-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.721365-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: using-templates-t1-amount-duplicate
+2023-02-06T08:41:16.726394-0500 
taler-merchant-httpd-17112(Z8S3NEJTS2X544EZD5CXT2T9HM) INFO Handling request 
(POST) for URL '/templates/template-amount'
+2023-02-06T08:41:16.730504-0500 
taler-merchant-httpd-17112(Z8S3NEJTS2X544EZD5CXT2T9HM) INFO Finished handling 
request for `/templates/template-amount' with MHD termination code 0
+2023-02-06T08:41:16.732049-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.732280-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-templates-empty
+2023-02-06T08:41:16.737647-0500 
taler-merchant-httpd-17112(P113CP59XKQRJC74THSVE3R6EC) INFO Handling request 
(DELETE) for URL '/private/templates/t1'
+2023-02-06T08:41:16.742856-0500 
taler-merchant-httpd-17112(P113CP59XKQRJC74THSVE3R6EC) INFO Finished handling 
request for `/private/templates/t1' with MHD termination code 0
+2023-02-06T08:41:16.746873-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.747105-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: get-templates-empty
+2023-02-06T08:41:16.750304-0500 
taler-merchant-httpd-17112(3J7BD2N8T6W4NPH5V5HND4MNSC) INFO Handling request 
(DELETE) for URL '/private/templates/template-1'
+2023-02-06T08:41:16.761851-0500 
taler-merchant-httpd-17112(3J7BD2N8T6W4NPH5V5HND4MNSC) INFO Finished handling 
request for `/private/templates/template-1' with MHD termination code 0
+2023-02-06T08:41:16.762818-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.763042-0500 .libs/test_merchant_api_cs-16942 INFO Running 
batched command: post-templates-t1-deleted
+2023-02-06T08:41:16.768311-0500 
taler-merchant-httpd-17112(A9TZ5B1TPEGN44R3NPVX9E9CB8) INFO Handling request 
(POST) for URL '/templates/template-1'
+2023-02-06T08:41:16.771748-0500 
taler-merchant-httpd-17112(A9TZ5B1TPEGN44R3NPVX9E9CB8) INFO Finished handling 
request for `/templates/template-1' with MHD termination code 0
+2023-02-06T08:41:16.774210-0500 .libs/test_merchant_api_cs-16942 INFO Running 
command `templates'
+2023-02-06T08:41:16.774445-0500 .libs/test_merchant_api_cs-16942 INFO Exiting 
from batch: templates
+2023-02-06T08:41:16.778306-0500 .libs/test_merchant_api_cs-16942 INFO 
Executing shutdown at `END'
+2023-02-06T08:41:16.825058-0500 .libs/test_merchant_api_cs-16942 INFO 
Disconnecting from auditor at URL `http://the.auditor/'.
+2023-02-06T08:41:16.846358-0500 taler-merchant-httpd-17112 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T08:41:16.870170-0500 taler-merchant-httpd-17112 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T08:41:16.981840-0500 taler-exchange-httpd-17126 INFO Executing PQ 
command `UNLISTEN X6R9RKN23RNHRPK11GT4NDJZKAK8DX1V4AWCTN6RQV5MKDT818K4G'
+2023-02-06T08:41:16.996683-0500 taler-exchange-httpd-17126 INFO Executing PQ 
command `UNLISTEN XRE2709K6TYDBVARD9Y5SCZY7VHE4D5DKF0R8DHQ4X5T13E8X2X60'
+2023-02-06T08:41:17.008632-0500 taler-exchange-httpd-17126 INFO Stopping PQ 
event scheduler job
+==17126== 
+==17126== HEAP SUMMARY:
+==17126==     in use at exit: 2,050,191 bytes in 6,127 blocks
+==17126==   total heap usage: 341,827 allocs, 335,700 frees, 84,807,654 bytes 
allocated
+==17126== 
+==17126== LEAK SUMMARY:
+==17126==    definitely lost: 1,820 bytes in 20 blocks
+==17126==    indirectly lost: 442,295 bytes in 6,038 blocks
+==17126==      possibly lost: 0 bytes in 0 blocks
+==17126==    still reachable: 1,606,076 bytes in 69 blocks
+==17126==         suppressed: 0 bytes in 0 blocks
+==17126== Rerun with --leak-check=full to see details of leaked memory
+==17126== 
+==17126== For lists of detected and suppressed errors, rerun with: -s
+==17126== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17123== 
+==17123== HEAP SUMMARY:
+==17123==     in use at exit: 2,845 bytes in 27 blocks
+==17123==   total heap usage: 3,806 allocs, 3,779 frees, 366,701 bytes 
allocated
+==17123== 
+==17123== LEAK SUMMARY:
+==17123==    definitely lost: 0 bytes in 0 blocks
+==17123==    indirectly lost: 0 bytes in 0 blocks
+==17123==      possibly lost: 0 bytes in 0 blocks
+==17123==    still reachable: 2,845 bytes in 27 blocks
+==17123==         suppressed: 0 bytes in 0 blocks
+==17123== Rerun with --leak-check=full to see details of leaked memory
+==17123== 
+==17123== For lists of detected and suppressed errors, rerun with: -s
+==17123== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17124== 
+==17124== HEAP SUMMARY:
+==17124==     in use at exit: 526,132 bytes in 19 blocks
+==17124==   total heap usage: 3,316 allocs, 3,297 frees, 840,257 bytes 
allocated
+==17124== 
+==17124== LEAK SUMMARY:
+==17124==    definitely lost: 0 bytes in 0 blocks
+==17124==    indirectly lost: 0 bytes in 0 blocks
+==17124==      possibly lost: 0 bytes in 0 blocks
+==17124==    still reachable: 526,132 bytes in 19 blocks
+==17124==         suppressed: 0 bytes in 0 blocks
+==17124== Rerun with --leak-check=full to see details of leaked memory
+==17124== 
+==17124== For lists of detected and suppressed errors, rerun with: -s
+==17124== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+==17125== 
+==17125== HEAP SUMMARY:
+==17125==     in use at exit: 634,386 bytes in 875 blocks
+==17125==   total heap usage: 5,640 allocs, 4,765 frees, 1,316,737 bytes 
allocated
+==17125== 
+==17125== LEAK SUMMARY:
+==17125==    definitely lost: 0 bytes in 0 blocks
+==17125==    indirectly lost: 0 bytes in 0 blocks
+==17125==      possibly lost: 0 bytes in 0 blocks
+==17125==    still reachable: 634,386 bytes in 875 blocks
+==17125==         suppressed: 0 bytes in 0 blocks
+==17125== Rerun with --leak-check=full to see details of leaked memory
+==17125== 
+==17125== For lists of detected and suppressed errors, rerun with: -s
+==17125== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
+2023-02-06T08:41:17.448551-0500 taler-merchant-httpd-17112 INFO Executing PQ 
command `UNLISTEN XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0'
+2023-02-06T08:41:17.449477-0500 taler-merchant-httpd-17112 INFO Stopping PQ 
event scheduler job
+2023-02-06T08:41:17.485681-0500 taler-merchant-httpd-17112 INFO Disconnecting 
from auditor at URL `http://the.auditor/'.
+==17112== 
+==17112== HEAP SUMMARY:
+==17112==     in use at exit: 126,760 bytes in 918 blocks
+==17112==   total heap usage: 525,060 allocs, 524,142 frees, 128,187,169 bytes 
allocated
+==17112== 
+==17112== LEAK SUMMARY:
+==17112==    definitely lost: 4,758 bytes in 37 blocks
+==17112==    indirectly lost: 101,627 bytes in 755 blocks
+==17112==      possibly lost: 0 bytes in 0 blocks
+==17112==    still reachable: 20,375 bytes in 126 blocks
+==17112==         suppressed: 0 bytes in 0 blocks
+==17112== Rerun with --leak-check=full to see details of leaked memory
+==17112== 
+==17112== For lists of detected and suppressed errors, rerun with: -s
+==17112== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
+==16942== 
+==16942== HEAP SUMMARY:
+==16942==     in use at exit: 14,270 bytes in 23 blocks
+==16942==   total heap usage: 240,246 allocs, 240,223 frees, 92,659,834 bytes 
allocated
+==16942== 
+==16942== LEAK SUMMARY:
+==16942==    definitely lost: 12,510 bytes in 1 blocks
+==16942==    indirectly lost: 0 bytes in 0 blocks
+==16942==      possibly lost: 0 bytes in 0 blocks
+==16942==    still reachable: 1,760 bytes in 22 blocks
+==16942==         suppressed: 0 bytes in 0 blocks
+==16942== Rerun with --leak-check=full to see details of leaked memory
+==16942== 
+==16942== For lists of detected and suppressed errors, rerun with: -s
+==16942== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
diff --git a/src/testing/logs b/src/testing/logs
new file mode 100644
index 00000000..3dd0ce62
--- /dev/null
+++ b/src/testing/logs
@@ -0,0 +1,2532 @@
+2023-02-06T06:53:45.333743-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO Using 
fakebank http://localhost:8082/2/ on port 8082
+2023-02-06T06:53:45.334126-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
exchange payto: payto://x-taler-bank/localhost/2?receiver-name=2
+2023-02-06T06:53:45.334159-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
user42_payto: payto://x-taler-bank/localhost/42?receiver-name=42
+2023-02-06T06:53:45.334179-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
user43_payto: payto://x-taler-bank/localhost/43?receiver-name=43
+psql:/home/priscilla/install/share/taler/sql/merchant/drop.sql:33: NOTICE:  
drop cascades to 26 other objects
+DETAIL:  drop cascades to table merchant.merchant_exchange_wire_fees
+drop cascades to table merchant.merchant_exchange_signing_keys
+drop cascades to table merchant.merchant_instances
+drop cascades to table merchant.merchant_keys
+drop cascades to table merchant.merchant_accounts
+drop cascades to table merchant.merchant_inventory
+drop cascades to table merchant.merchant_inventory_locks
+drop cascades to table merchant.merchant_orders
+drop cascades to table merchant.merchant_order_locks
+drop cascades to table merchant.merchant_contract_terms
+drop cascades to table merchant.merchant_deposits
+drop cascades to table merchant.merchant_refunds
+drop cascades to table merchant.merchant_refund_proofs
+drop cascades to table merchant.merchant_transfers
+drop cascades to table merchant.merchant_transfer_signatures
+drop cascades to table merchant.merchant_transfer_to_coin
+drop cascades to table merchant.merchant_deposit_to_transfer
+drop cascades to table merchant.merchant_tip_reserves
+drop cascades to table merchant.merchant_tip_reserve_keys
+drop cascades to table merchant.merchant_tips
+drop cascades to table merchant.merchant_tip_pickups
+drop cascades to table merchant.merchant_tip_pickup_signatures
+drop cascades to table merchant.merchant_kyc
+drop cascades to table merchant.merchant_template
+drop cascades to table merchant.merchant_webhook
+drop cascades to table merchant.merchant_pending_webhooks
+psql:/home/priscilla/install/share/taler/sql/exchange/drop.sql:25: NOTICE:  
drop cascades to 216 other objects
+DETAIL:  drop cascades to table exchange.exchange_tables
+drop cascades to function exchange.create_partitioned_table(character 
varying,character varying,character varying,character varying)
+drop cascades to function exchange.comment_partitioned_table(character 
varying,character varying,character varying)
+drop cascades to function exchange.comment_partitioned_column(character 
varying,character varying,character varying,character varying)
+drop cascades to function exchange.do_create_tables(integer)
+drop cascades to table exchange.denominations
+drop cascades to table exchange.denomination_revocations
+drop cascades to function exchange.create_table_wire_targets(character varying)
+drop cascades to function exchange.constrain_table_wire_targets(character 
varying)
+drop cascades to table exchange.kyc_alerts
+drop cascades to table exchange.wire_fee
+drop cascades to table exchange.global_fee
+drop cascades to table exchange.wire_accounts
+drop cascades to table exchange.auditors
+drop cascades to table exchange.auditor_denom_sigs
+drop cascades to table exchange.exchange_sign_keys
+drop cascades to table exchange.signkey_revocations
+drop cascades to table exchange.extensions
+drop cascades to table exchange.profit_drains
+drop cascades to function 
exchange.create_table_legitimization_processes(character varying)
+drop cascades to function 
exchange.constrain_table_legitimization_processes(character varying)
+drop cascades to function 
exchange.create_table_legitimization_requirements(character varying)
+drop cascades to function 
exchange.constrain_table_legitimization_requirements(character varying)
+drop cascades to function exchange.create_table_reserves(character varying)
+drop cascades to function exchange.constrain_table_reserves(character varying)
+drop cascades to function exchange.create_table_reserves_in(character varying)
+drop cascades to function exchange.constrain_table_reserves_in(character 
varying)
+drop cascades to function exchange.foreign_table_reserves_in()
+drop cascades to function exchange.create_table_reserves_close(character 
varying)
+drop cascades to function exchange.constrain_table_reserves_close(character 
varying)
+drop cascades to function exchange.foreign_table_reserves_close()
+drop cascades to function exchange.create_table_close_requests(character 
varying)
+drop cascades to function exchange.constrain_table_close_requests(character 
varying)
+drop cascades to function exchange.foreign_table_close_requests()
+drop cascades to function 
exchange.create_table_reserves_open_deposits(character varying)
+drop cascades to function 
exchange.constrain_table_reserves_open_deposits(character varying)
+drop cascades to function 
exchange.create_table_reserves_open_requests(character varying)
+drop cascades to function 
exchange.constrain_table_reserves_open_requests(character varying)
+drop cascades to function exchange.foreign_table_reserves_open_requests()
+drop cascades to function exchange.create_table_reserves_out(character varying)
+drop cascades to function exchange.constrain_table_reserves_out(character 
varying)
+drop cascades to function exchange.foreign_table_reserves_out()
+drop cascades to function 
exchange.create_table_reserves_out_by_reserve(character varying)
+drop cascades to function 
exchange.constrain_table_reserves_out_by_reserve(character varying)
+drop cascades to function exchange.reserves_out_by_reserve_insert_trigger()
+drop cascades to function exchange.reserves_out_by_reserve_delete_trigger()
+drop cascades to function exchange.master_table_reserves_out()
+drop cascades to function exchange.create_table_known_coins(character varying)
+drop cascades to function exchange.constrain_table_known_coins(character 
varying)
+drop cascades to function exchange.foreign_table_known_coins()
+drop cascades to function exchange.create_table_refresh_commitments(character 
varying)
+drop cascades to function 
exchange.constrain_table_refresh_commitments(character varying)
+drop cascades to function exchange.foreign_table_refresh_commitments()
+drop cascades to function 
exchange.create_table_refresh_revealed_coins(character varying)
+drop cascades to function 
exchange.constrain_table_refresh_revealed_coins(character varying)
+drop cascades to function exchange.foreign_table_refresh_revealed_coins()
+drop cascades to function 
exchange.create_table_refresh_transfer_keys(character varying)
+drop cascades to function 
exchange.constrain_table_refresh_transfer_keys(character varying)
+drop cascades to function exchange.foreign_table_refresh_transfer_keys()
+drop cascades to function exchange.create_table_deposits(character varying)
+drop cascades to function exchange.constrain_table_deposits(character varying)
+drop cascades to function exchange.foreign_table_deposits()
+drop cascades to function exchange.create_table_deposits_by_ready(character 
varying)
+drop cascades to function exchange.constrain_table_deposits_by_ready(character 
varying)
+drop cascades to function 
exchange.create_table_deposits_for_matching(character varying)
+drop cascades to function 
exchange.constrain_table_deposits_for_matching(character varying)
+drop cascades to function exchange.deposits_insert_trigger()
+drop cascades to function exchange.deposits_update_trigger()
+drop cascades to function exchange.deposits_delete_trigger()
+drop cascades to function exchange.master_table_deposits()
+drop cascades to function exchange.create_table_refunds(character varying)
+drop cascades to function exchange.constrain_table_refunds(character varying)
+drop cascades to function exchange.foreign_table_refunds()
+drop cascades to function exchange.create_table_wire_out(character varying)
+drop cascades to function exchange.constrain_table_wire_out(character varying)
+drop cascades to function exchange.wire_out_delete_trigger()
+drop cascades to function exchange.master_table_wire_out()
+drop cascades to function 
exchange.create_table_aggregation_transient(character varying)
+drop cascades to function exchange.create_table_aggregation_tracking(character 
varying)
+drop cascades to function 
exchange.constrain_table_aggregation_tracking(character varying)
+drop cascades to function exchange.foreign_table_aggregation_tracking()
+drop cascades to function exchange.create_table_recoup(character varying)
+drop cascades to function exchange.constrain_table_recoup(character varying)
+drop cascades to function exchange.foreign_table_recoup()
+drop cascades to function exchange.create_table_recoup_by_reserve(character 
varying)
+drop cascades to function exchange.constrain_table_recoup_by_reserve(character 
varying)
+drop cascades to function exchange.recoup_insert_trigger()
+drop cascades to function exchange.recoup_delete_trigger()
+drop cascades to function exchange.master_table_recoup()
+drop cascades to function exchange.create_table_recoup_refresh(character 
varying)
+drop cascades to function exchange.constrain_table_recoup_refresh(character 
varying)
+drop cascades to function exchange.foreign_table_recoup_refresh()
+drop cascades to function exchange.create_table_prewire(character varying)
+drop cascades to function exchange.constrain_table_prewire(character varying)
+drop cascades to function exchange.create_table_cs_nonce_locks(character 
varying)
+drop cascades to function exchange.constrain_table_cs_nonce_locks(character 
varying)
+drop cascades to function exchange.create_table_purse_requests(character 
varying)
+drop cascades to function exchange.constrain_table_purse_requests(character 
varying)
+drop cascades to function exchange.create_table_purse_merges(character varying)
+drop cascades to function exchange.constrain_table_purse_merges(character 
varying)
+and 116 other objects (see server log for list)
+psql:/home/priscilla/install/share/taler/sql/auditor/drop.sql:23: NOTICE:  
drop cascades to 20 other objects
+DETAIL:  drop cascades to table auditor.auditor_exchanges
+drop cascades to table auditor.auditor_exchange_signkeys
+drop cascades to table auditor.auditor_progress_reserve
+drop cascades to table auditor.auditor_progress_purse
+drop cascades to table auditor.auditor_progress_aggregation
+drop cascades to table auditor.auditor_progress_deposit_confirmation
+drop cascades to table auditor.auditor_progress_coin
+drop cascades to table auditor.wire_auditor_account_progress
+drop cascades to table auditor.wire_auditor_progress
+drop cascades to table auditor.auditor_reserves
+drop cascades to table auditor.auditor_purses
+drop cascades to table auditor.auditor_purse_summary
+drop cascades to table auditor.auditor_reserve_balance
+drop cascades to table auditor.auditor_wire_fee_balance
+drop cascades to table auditor.auditor_denomination_pending
+drop cascades to table auditor.auditor_balance_summary
+drop cascades to table auditor.auditor_historic_denomination_revenue
+drop cascades to table auditor.auditor_historic_reserve_summary
+drop cascades to table auditor.deposit_confirmations
+drop cascades to table auditor.auditor_predicted_result
+Waiting for `taler-merchant-httpd' to be ready
+.
+2023-02-06T06:54:04.923993-0500 taler-merchant-httpd-9368 INFO Starting 
taler-merchant-httpd
+2023-02-06T06:54:05.425796-0500 taler-merchant-httpd-9368 INFO Exchange given 
in section `merchant-exchange-kudos' is for another currency. Skipping.
+2023-02-06T06:54:05.425893-0500 taler-merchant-httpd-9368 INFO Auditor given 
in section `merchant-auditor-kudos' is for another currency. Skipping.
+2023-02-06T06:54:05.430847-0500 taler-merchant-httpd-9368 INFO Change in PQ 
event FD to -1
+2023-02-06T06:54:05.430877-0500 taler-merchant-httpd-9368 INFO New poll FD is 
-1
+2023-02-06T06:54:05.478073-0500 taler-merchant-httpd-9368 INFO Change in PQ 
event FD to 20
+2023-02-06T06:54:05.478136-0500 taler-merchant-httpd-9368 INFO New poll FD is 
20
+2023-02-06T06:54:05.478195-0500 taler-merchant-httpd-9368 INFO Starting event 
scheduler
+2023-02-06T06:54:05.478218-0500 taler-merchant-httpd-9368 INFO New poll FD is 
20
+2023-02-06T06:54:05.478236-0500 taler-merchant-httpd-9368 INFO Activating poll 
job on 20
+2023-02-06T06:54:05.478270-0500 taler-merchant-httpd-9368 INFO Executing PQ 
command `LISTEN XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0'
+2023-02-06T06:54:05.478473-0500 taler-merchant-httpd-9368 INFO Received 
instance settings notification: reload `(null)'
+2023-02-06T06:54:05.480880-0500 taler-merchant-httpd-9368 INFO PG poll job 
active
+2023-02-06T06:54:05.480922-0500 taler-merchant-httpd-9368 INFO PG poll job 
finishes after 0 events
+2023-02-06T06:54:05.480943-0500 taler-merchant-httpd-9368 INFO Resubscribing
+2023-02-06T06:54:05.481808-0500 taler-merchant-httpd-9368 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T06:54:05.481842-0500 taler-merchant-httpd-9368 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T06:54:05.481867-0500 taler-merchant-httpd-9368 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T06:54:05.484694-0500 taler-merchant-httpd-9368 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T06:54:05.484727-0500 taler-merchant-httpd-9368 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T06:54:05.484749-0500 taler-merchant-httpd-9368 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T06:54:05.490402-0500 taler-merchant-httpd-9368 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T06:54:05.490438-0500 taler-merchant-httpd-9368 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T06:54:05.490468-0500 taler-merchant-httpd-9368 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T06:54:05.502303-0500 taler-merchant-httpd-9368 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T06:54:05.502339-0500 taler-merchant-httpd-9368 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T06:54:05.502362-0500 taler-merchant-httpd-9368 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T06:54:05.530080-0500 taler-merchant-httpd-9368 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T06:54:05.530119-0500 taler-merchant-httpd-9368 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T06:54:05.530142-0500 taler-merchant-httpd-9368 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T06:54:05.597688-0500 taler-merchant-httpd-9368 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T06:54:05.597726-0500 taler-merchant-httpd-9368 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T06:54:05.597750-0500 taler-merchant-httpd-9368 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T06:54:05.733979-0500 taler-merchant-httpd-9368 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T06:54:05.734018-0500 taler-merchant-httpd-9368 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T06:54:05.734043-0500 taler-merchant-httpd-9368 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T06:54:05.918445-0500 
taler-merchant-httpd-9368(2152WS3V023FXH7AFXX9BF0RFM) INFO Handling request 
(GET) for URL '/'
+2023-02-06T06:54:05.918584-0500 
taler-merchant-httpd-9368(2152WS3V023FXH7AFXX9BF0RFM) INFO Finished handling 
request for `/' with MHD termination code 0
+2023-02-06T06:54:05.918928-0500 
taler-merchant-httpd-9368(11S5P6BDFYK7NNQ28SK4JD8VT4) INFO Handling request 
(GET) for URL '/webui/'
+2023-02-06T06:54:05.919043-0500 
taler-merchant-httpd-9368(11S5P6BDFYK7NNQ28SK4JD8VT4) INFO Finished handling 
request for `/webui/' with MHD termination code 0
+
+2023-02-06T06:54:05.929052-0500 taler-exchange-secmod-eddsa-9374 INFO Setup 
fresh private key in 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-eddsa/keys/1675684445'
+2023-02-06T06:54:05.929412-0500 taler-exchange-secmod-eddsa-9374 INFO Setup 
fresh private key in 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-eddsa/keys/1682941745'
+2023-02-06T06:54:05.929651-0500 taler-exchange-secmod-eddsa-9374 INFO Setup 
fresh private key in 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-eddsa/keys/1690199045'
+2023-02-06T06:54:05.929754-0500 taler-exchange-secmod-rsa-9375 WARNING No RSA 
denominations configured
+2023-02-06T06:54:05.929876-0500 taler-exchange-secmod-eddsa-9374 INFO Setup 
fresh private key in 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-eddsa/keys/1697456345'
+2023-02-06T06:54:05.930035-0500 taler-exchange-secmod-eddsa-9374 INFO Setup 
fresh private key in 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-eddsa/keys/1704713645'
+2023-02-06T06:54:05.930124-0500 taler-exchange-secmod-cs-9376 INFO Loading 
keys for denomination coin_eur_5
+2023-02-06T06:54:05.930671-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 1FQ1YVGH from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1706678017'
+2023-02-06T06:54:05.931003-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 7NEATPW9 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1703051017'
+2023-02-06T06:54:05.931329-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key GEERKG2F from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1677057517'
+2023-02-06T06:54:05.931646-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key SKCHYFB8 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1683707017'
+2023-02-06T06:54:05.931962-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key BQH4V4FJ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1680684517'
+2023-02-06T06:54:05.932278-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 7TA14R36 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1692774517'
+2023-02-06T06:54:05.932602-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key X2H5VR7R from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1692170017'
+2023-02-06T06:54:05.932899-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 6N2P456C from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1680080017'
+2023-02-06T06:54:05.933174-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 9E5Y12XK from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1679475517'
+2023-02-06T06:54:05.933500-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key Y9C2ENMN from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1702446517'
+2023-02-06T06:54:05.933817-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key J7XGY3JB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1676453017'
+2023-02-06T06:54:05.934028-0500 taler-exchange-httpd-9377 INFO Launching 
exchange with public key `HGYF3P'...
+2023-02-06T06:54:05.934126-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 99MVDFSB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1698215017'
+2023-02-06T06:54:05.934440-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 42278A6A from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1685520517'
+2023-02-06T06:54:05.934906-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 0873V44G from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1697006017'
+2023-02-06T06:54:05.935221-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 3XT18ZQM from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1695797017'
+2023-02-06T06:54:05.935537-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key NABR9NEM from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1687938517'
+2023-02-06T06:54:05.935852-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 3G8YKGDZ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1682498017'
+2023-02-06T06:54:05.936147-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 0TNFW880 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1686729517'
+2023-02-06T06:54:05.936427-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key BMMSQP4W from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1693379017'
+2023-02-06T06:54:05.936703-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key EW528A72 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1675244017'
+2023-02-06T06:54:05.936927-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 2Z5WBE1Y from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1684916017'
+2023-02-06T06:54:05.937148-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key MFYBSS0B from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1691565517'
+2023-02-06T06:54:05.937362-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 77X4WJTF from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1701842017'
+2023-02-06T06:54:05.937584-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key RJR3RN6V from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1678266517'
+2023-02-06T06:54:05.937796-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key KAHY3QBE from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1688543017'
+2023-02-06T06:54:05.938014-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key QXBKNKCW from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1697610517'
+2023-02-06T06:54:05.938236-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key W8REVV63 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1695192517'
+2023-02-06T06:54:05.938454-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key K31Z9EHZ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1677662017'
+2023-02-06T06:54:05.938755-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key PQK9DW0J from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1683102517'
+2023-02-06T06:54:05.939029-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key G9CYRY0G from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1689147517'
+2023-02-06T06:54:05.939313-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key HV7NE0CE from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1690961017'
+2023-02-06T06:54:05.939401-0500 taler-exchange-httpd-9377 INFO Change in PQ 
event FD to -1
+2023-02-06T06:54:05.939433-0500 taler-exchange-httpd-9377 INFO New poll FD is 
-1
+2023-02-06T06:54:05.939608-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 6V7X34X1 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1696401517'
+2023-02-06T06:54:05.939889-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key RX3HGJPP from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1694588017'
+2023-02-06T06:54:05.940150-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key JEM5B57M from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1678871017'
+2023-02-06T06:54:05.940368-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 1HEBMHQB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1700028517'
+2023-02-06T06:54:05.940606-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key VDHB19ZQ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1687334017'
+2023-02-06T06:54:05.940867-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key MTBGBYJN from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1675848517'
+2023-02-06T06:54:05.941111-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key PQM7A33J from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1703655517'
+2023-02-06T06:54:05.941351-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 8QFSDJD5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1701237517'
+2023-02-06T06:54:05.941591-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key GF8NWX2R from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1693983517'
+2023-02-06T06:54:05.941820-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key TPEA99F5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1681893517'
+2023-02-06T06:54:05.942056-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 67RBHN8A from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1704864517'
+2023-02-06T06:54:05.942302-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key WMY0J01S from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1704260017'
+2023-02-06T06:54:05.942530-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 5FTMD5S9 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1684311517'
+2023-02-06T06:54:05.942771-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 56CANKFY from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1706073517'
+2023-02-06T06:54:05.943026-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 6CXV715K from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1689752017'
+2023-02-06T06:54:05.943268-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key C01QDVM8 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1690356517'
+2023-02-06T06:54:05.943507-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 0C90WJFB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1699424017'
+2023-02-06T06:54:05.943745-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key VHRZ65AV from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1705469017'
+2023-02-06T06:54:05.943993-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 4CGGRE8B from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1681289017'
+2023-02-06T06:54:05.944239-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 7VDVMFPK from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1698819517'
+2023-02-06T06:54:05.944482-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key F6ZNCY50 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1686125017'
+2023-02-06T06:54:05.944687-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 0QAXT1R4 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_5/1700633017'
+2023-02-06T06:54:05.944737-0500 taler-exchange-secmod-cs-9376 INFO Updating 
keys of denomination `coin_eur_5', last key 1FQ1YVGH valid for another 365 days
+2023-02-06T06:54:05.944763-0500 taler-exchange-secmod-cs-9376 INFO Loading 
keys for denomination coin_eur_1
+2023-02-06T06:54:05.945000-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key A7AETFXH from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1706678017'
+2023-02-06T06:54:05.945204-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key BQ4C9GMT from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1703051017'
+2023-02-06T06:54:05.945410-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key SJJ50R2X from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1677057517'
+2023-02-06T06:54:05.945618-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 83NKZQ1K from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1683707017'
+2023-02-06T06:54:05.945822-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 7SAECQRC from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1680684517'
+2023-02-06T06:54:05.946026-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key QEX06NVS from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1692774517'
+2023-02-06T06:54:05.946229-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key C23FR09P from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1692170017'
+2023-02-06T06:54:05.946433-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key Z7ZRATSG from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1680080017'
+2023-02-06T06:54:05.946671-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key ST24V7W9 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1679475517'
+2023-02-06T06:54:05.946870-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key TSHSRX35 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1702446517'
+2023-02-06T06:54:05.947076-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key P4JAYQ28 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1676453017'
+2023-02-06T06:54:05.947284-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key BKGPS6D4 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1698215017'
+2023-02-06T06:54:05.947489-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key MNDDK5R1 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1685520517'
+2023-02-06T06:54:05.947701-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key ES56PW6T from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1697006017'
+2023-02-06T06:54:05.947901-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key H9EHNAM5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1695797017'
+2023-02-06T06:54:05.948098-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key EC835AW5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1687938517'
+2023-02-06T06:54:05.948295-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key FK1NXT7G from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1682498017'
+2023-02-06T06:54:05.948470-0500 taler-exchange-httpd-9377 INFO Change in PQ 
event FD to 12
+2023-02-06T06:54:05.948500-0500 taler-exchange-httpd-9377 INFO New poll FD is 
12
+2023-02-06T06:54:05.948500-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 4YWJKR95 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1686729517'
+2023-02-06T06:54:05.948671-0500 taler-exchange-httpd-9377 INFO Starting event 
scheduler
+2023-02-06T06:54:05.948695-0500 taler-exchange-httpd-9377 INFO New poll FD is 
12
+2023-02-06T06:54:05.948708-0500 taler-exchange-httpd-9377 INFO Activating poll 
job on 12
+2023-02-06T06:54:05.948707-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key NXNYQKAQ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1693379017'
+2023-02-06T06:54:05.948730-0500 taler-exchange-httpd-9377 INFO Executing PQ 
command `LISTEN X6R9RKN23RNHRPK11GT4NDJZKAK8DX1V4AWCTN6RQV5MKDT818K4G'
+2023-02-06T06:54:05.948817-0500 taler-exchange-httpd-9377 INFO Executing PQ 
command `LISTEN XRE2709K6TYDBVARD9Y5SCZY7VHE4D5DKF0R8DHQ4X5T13E8X2X60'
+2023-02-06T06:54:05.948904-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key XJMFT3QF from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1675244017'
+2023-02-06T06:54:05.948950-0500 taler-exchange-httpd-9377 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/tos//en/tos-v0.epub'
+2023-02-06T06:54:05.949113-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key YXXKPS80 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1684916017'
+2023-02-06T06:54:05.949312-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 22JMT3BQ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1691565517'
+2023-02-06T06:54:05.949511-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key HZ734SYP from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1701842017'
+2023-02-06T06:54:05.949714-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 4F2DH4G5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1678266517'
+2023-02-06T06:54:05.949911-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key DD2VMX6J from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1688543017'
+2023-02-06T06:54:05.949935-0500 taler-exchange-httpd-9377 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/tos//en/tos-v0.md'
+2023-02-06T06:54:05.950109-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key HXXAPD00 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1697610517'
+2023-02-06T06:54:05.950310-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key QZX8W10Y from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1695192517'
+2023-02-06T06:54:05.950541-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 94CJQP7T from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1677662017'
+2023-02-06T06:54:05.950685-0500 taler-exchange-httpd-9377 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/tos//en/tos-v0.pdf'
+2023-02-06T06:54:05.950743-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 1FKD64YY from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1683102517'
+2023-02-06T06:54:05.950947-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key R9G5VSEZ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1689147517'
+2023-02-06T06:54:05.951146-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key MDMNDHS6 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1690961017'
+2023-02-06T06:54:05.951345-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 8FDG0NWX from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1696401517'
+2023-02-06T06:54:05.951544-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key SKZ04GZV from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1694588017'
+2023-02-06T06:54:05.951748-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key KAFT0J59 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1678871017'
+2023-02-06T06:54:05.951949-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key SDR7CSF8 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1700028517'
+2023-02-06T06:54:05.952147-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key ZQQP5796 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1687334017'
+2023-02-06T06:54:05.952345-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key K87W7J5C from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1675848517'
+2023-02-06T06:54:05.952544-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key T3MPV2KW from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1703655517'
+2023-02-06T06:54:05.952742-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 4BZMQ9BH from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1701237517'
+2023-02-06T06:54:05.952941-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key T6XCN05P from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1693983517'
+2023-02-06T06:54:05.953145-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 891291QA from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1681893517'
+2023-02-06T06:54:05.953351-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key T26G5A0C from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1704864517'
+2023-02-06T06:54:05.953554-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 2ZTVE2MT from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1704260017'
+2023-02-06T06:54:05.953752-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key H3T838QD from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1684311517'
+2023-02-06T06:54:05.953958-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key SZDKF869 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1706073517'
+2023-02-06T06:54:05.954156-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 25G0F5KD from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1689752017'
+2023-02-06T06:54:05.954361-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key ZQTAG30D from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1690356517'
+2023-02-06T06:54:05.954578-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 567Y3VYF from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1699424017'
+2023-02-06T06:54:05.954744-0500 taler-exchange-httpd-9377 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/tos//en/tos-v0.xml'
+2023-02-06T06:54:05.954787-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 0A03DMFT from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1705469017'
+2023-02-06T06:54:05.954989-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key K9RQ5K5P from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1681289017'
+2023-02-06T06:54:05.955196-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key JSKC0R41 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1698819517'
+2023-02-06T06:54:05.955396-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key AVXQWRE7 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1686125017'
+2023-02-06T06:54:05.955601-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 9EYGPK1E from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_1/1700633017'
+2023-02-06T06:54:05.955641-0500 taler-exchange-secmod-cs-9376 INFO Updating 
keys of denomination `coin_eur_1', last key A7AETFXH valid for another 365 days
+2023-02-06T06:54:05.955663-0500 taler-exchange-secmod-cs-9376 INFO Loading 
keys for denomination coin_eur_ct_10
+2023-02-06T06:54:05.955884-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 2B468NCN from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1706678017'
+2023-02-06T06:54:05.955974-0500 taler-exchange-httpd-9377 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/tos//en/tos-v0.txt'
+2023-02-06T06:54:05.956091-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key K1J4DVPR from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1703051017'
+2023-02-06T06:54:05.956291-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key Y9JFK8Q7 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1677057517'
+2023-02-06T06:54:05.956489-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key GSRQJ50J from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1683707017'
+2023-02-06T06:54:05.956687-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 2TNPZ8EY from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1680684517'
+2023-02-06T06:54:05.956879-0500 taler-exchange-httpd-9377 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/tos//en/tos-v0.html'
+2023-02-06T06:54:05.956892-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key A4WBC98G from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1692774517'
+2023-02-06T06:54:05.957106-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key V8F6PR1K from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1692170017'
+2023-02-06T06:54:05.957307-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key W9HH1N7W from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1680080017'
+2023-02-06T06:54:05.957506-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 3YRT7NAC from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1679475517'
+2023-02-06T06:54:05.957712-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 8KSZ012E from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1702446517'
+2023-02-06T06:54:05.957912-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key ZS21B83R from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1676453017'
+2023-02-06T06:54:05.958114-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key TYZH9WR2 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1698215017'
+2023-02-06T06:54:05.958319-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key C3WM9ZJH from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1685520517'
+2023-02-06T06:54:05.958585-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 6T0NPFE5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1697006017'
+2023-02-06T06:54:05.958789-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key DJWX5THB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1695797017'
+2023-02-06T06:54:05.958989-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key FBZZ696F from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1687938517'
+2023-02-06T06:54:05.959196-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key SJ9FC90C from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1682498017'
+2023-02-06T06:54:05.959397-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key BW1EXZBQ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1686729517'
+2023-02-06T06:54:05.959601-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key P3W1EWYM from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1693379017'
+2023-02-06T06:54:05.959805-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 1GHAW81F from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1675244017'
+2023-02-06T06:54:05.960009-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 4K0PWB1A from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1684916017'
+2023-02-06T06:54:05.960208-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key BW58WNNC from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1691565517'
+2023-02-06T06:54:05.960406-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key GDN13SQP from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1701842017'
+2023-02-06T06:54:05.960606-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key KE6PZTPN from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1678266517'
+2023-02-06T06:54:05.960818-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key ED9QBE10 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1688543017'
+2023-02-06T06:54:05.961018-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key S2X5WFFN from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1697610517'
+2023-02-06T06:54:05.961222-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key TZ8EAYS5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1695192517'
+2023-02-06T06:54:05.961422-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 822EJGJB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1677662017'
+2023-02-06T06:54:05.961621-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key TECN7R7J from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1683102517'
+2023-02-06T06:54:05.961825-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key GT1C1K81 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1689147517'
+2023-02-06T06:54:05.962023-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key QSA1562V from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1690961017'
+2023-02-06T06:54:05.962222-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 5D50XCQK from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1696401517'
+2023-02-06T06:54:05.962420-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 5D9J81KM from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1694588017'
+2023-02-06T06:54:05.962650-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key XZNHNMZB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1678871017'
+2023-02-06T06:54:05.962851-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key N5AW88W9 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1700028517'
+2023-02-06T06:54:05.963052-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key ACY1AXK4 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1687334017'
+2023-02-06T06:54:05.963252-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key HEB1FFF6 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1675848517'
+2023-02-06T06:54:05.963452-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 6AXJ4NNA from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1703655517'
+2023-02-06T06:54:05.963651-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 6WMHZ8F0 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1701237517'
+2023-02-06T06:54:05.963858-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key QCQBT54Y from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1693983517'
+2023-02-06T06:54:05.964062-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key G786QPSA from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1681893517'
+2023-02-06T06:54:05.964267-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key WV34P5EM from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1704864517'
+2023-02-06T06:54:05.964480-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key WH8CYXT5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1704260017'
+2023-02-06T06:54:05.964680-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key QV3KKTN3 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1684311517'
+2023-02-06T06:54:05.964885-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key ESS4M3C9 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1706073517'
+2023-02-06T06:54:05.965084-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key JXBDN4WA from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1689752017'
+2023-02-06T06:54:05.965283-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key Z09WBTX3 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1690356517'
+2023-02-06T06:54:05.965488-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key WDPWHXZV from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1699424017'
+2023-02-06T06:54:05.965699-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key JCPVQMZ7 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1705469017'
+2023-02-06T06:54:05.965897-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 9CGT4HS8 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1681289017'
+2023-02-06T06:54:05.966095-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key M4RXJMYQ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1698819517'
+2023-02-06T06:54:05.966293-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key DWGM5ZG3 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1686125017'
+2023-02-06T06:54:05.966505-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key T77WC2VC from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_10/1700633017'
+2023-02-06T06:54:05.966546-0500 taler-exchange-secmod-cs-9376 INFO Updating 
keys of denomination `coin_eur_ct_10', last key 2B468NCN valid for another 365 
days
+2023-02-06T06:54:05.966567-0500 taler-exchange-secmod-cs-9376 INFO Loading 
keys for denomination coin_eur_ct_1
+2023-02-06T06:54:05.966804-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key AMKH6XA7 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1706678017'
+2023-02-06T06:54:05.967005-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key THHWXC1T from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1703051017'
+2023-02-06T06:54:05.967205-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key B2HHD9NH from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1677057517'
+2023-02-06T06:54:05.967410-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 6FZ6YY3Z from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1683707017'
+2023-02-06T06:54:05.967609-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key E3YKJN1Q from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1680684517'
+2023-02-06T06:54:05.967807-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key HXD2F8NV from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1692774517'
+2023-02-06T06:54:05.968018-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key TK6XPZYV from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1692170017'
+2023-02-06T06:54:05.968216-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key B21XQMF4 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1680080017'
+2023-02-06T06:54:05.968413-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key NHCTNY39 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1679475517'
+2023-02-06T06:54:05.968611-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key BNPZEFNM from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1702446517'
+2023-02-06T06:54:05.968809-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key F2EWTKD3 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1676453017'
+2023-02-06T06:54:05.969010-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key KSR74W5Q from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1698215017'
+2023-02-06T06:54:05.969209-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key ZFCCB4NP from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1685520517'
+2023-02-06T06:54:05.969408-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 7AWENDKW from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1697006017'
+2023-02-06T06:54:05.969613-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key ZBE6JJVS from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1695797017'
+2023-02-06T06:54:05.969818-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 5E8D6NWR from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1687938517'
+2023-02-06T06:54:05.970021-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key S2T4307C from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1682498017'
+2023-02-06T06:54:05.970220-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 6AMMV375 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1686729517'
+2023-02-06T06:54:05.970422-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key DDD28W23 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1693379017'
+2023-02-06T06:54:05.970658-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 0HBYZESC from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1675244017'
+2023-02-06T06:54:05.970860-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 0Z5ASDD1 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1684916017'
+2023-02-06T06:54:05.971060-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 36R5CB4N from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1691565517'
+2023-02-06T06:54:05.971259-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key RR7S5ERY from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1701842017'
+2023-02-06T06:54:05.971457-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key P6HYWD63 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1678266517'
+2023-02-06T06:54:05.971670-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key S6Q790SJ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1688543017'
+2023-02-06T06:54:05.971875-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 3WQFXHPZ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1697610517'
+2023-02-06T06:54:05.972075-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 6QFYM0ZX from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1695192517'
+2023-02-06T06:54:05.972273-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key PEEX5AR0 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1677662017'
+2023-02-06T06:54:05.972470-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key C7330F6E from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1683102517'
+2023-02-06T06:54:05.972668-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 26JXP8RT from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1689147517'
+2023-02-06T06:54:05.972874-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 350DC33S from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1690961017'
+2023-02-06T06:54:05.973073-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 0YN0G3GQ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1696401517'
+2023-02-06T06:54:05.973274-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key QTFTJRZ5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1694588017'
+2023-02-06T06:54:05.973476-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key PEYA8W42 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1678871017'
+2023-02-06T06:54:05.973680-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key HPVNVRJ2 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1700028517'
+2023-02-06T06:54:05.973879-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 8F542D0D from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1687334017'
+2023-02-06T06:54:05.974083-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key GGDHX9HW from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1675848517'
+2023-02-06T06:54:05.974282-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 77HS2480 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1703655517'
+2023-02-06T06:54:05.974498-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key VBRXFKDT from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1701237517'
+2023-02-06T06:54:05.974698-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key PCXYGR1H from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1693983517'
+2023-02-06T06:54:05.974902-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key JAB85TJ6 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1681893517'
+2023-02-06T06:54:05.975101-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 42XV03V8 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1704864517'
+2023-02-06T06:54:05.975307-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key S4KDZZ4K from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1704260017'
+2023-02-06T06:54:05.975512-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 2AS77WWH from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1684311517'
+2023-02-06T06:54:05.975710-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key P40RJ69A from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1706073517'
+2023-02-06T06:54:05.975910-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key ATY8716T from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1689752017'
+2023-02-06T06:54:05.976108-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 1MXZTSEZ from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1690356517'
+2023-02-06T06:54:05.976317-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key V0V2M23K from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1699424017'
+2023-02-06T06:54:05.976517-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key M78KJAXF from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1705469017'
+2023-02-06T06:54:05.976715-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key PV7NAZTW from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1681289017'
+2023-02-06T06:54:05.976913-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key 0AN04DDB from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1698819517'
+2023-02-06T06:54:05.977117-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key DSVFAHG5 from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1686125017'
+2023-02-06T06:54:05.977317-0500 taler-exchange-secmod-cs-9376 INFO Imported 
key QBRVZ71M from 
`/home/priscilla/merchant/src/testing/test_merchant_api_home//.local/share/taler//exchange-secmod-cs/keys/coin_eur_ct_1/1700633017'
+2023-02-06T06:54:05.977355-0500 taler-exchange-secmod-cs-9376 INFO Updating 
keys of denomination `coin_eur_ct_1', last key AMKH6XA7 valid for another 365 
days
+2023-02-06T06:54:05.977388-0500 taler-exchange-secmod-cs-9376 INFO Updating 
keys of denomination `coin_eur_ct_1', last key AMKH6XA7 valid for another 365 
days
+2023-02-06T06:54:05.985301-0500 taler-exchange-httpd-9377 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/pp//en/pp-v0.xml'
+2023-02-06T06:54:05.985831-0500 taler-exchange-httpd-9377 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/pp//en/pp-v0.epub'
+2023-02-06T06:54:05.986320-0500 taler-exchange-httpd-9377 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/pp//en/pp-v0.html'
+2023-02-06T06:54:06.015080-0500 taler-exchange-httpd-9377 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/pp//en/pp-v0.md'
+2023-02-06T06:54:06.015292-0500 taler-merchant-httpd-9368 INFO Received keys 
from URL `http://localhost:8081/keys' with status 0 and expiration Wed Dec 31 
19:00:00 1969.
+2023-02-06T06:54:06.015316-0500 taler-merchant-httpd-9368 WARNING Exchange 
failed to give expiration time, assuming in 1 h
+2023-02-06T06:54:06.015331-0500 taler-merchant-httpd-9368 WARNING Failed to 
receive /keys response from exchange http://localhost:8081/
+2023-02-06T06:54:06.015465-0500 taler-exchange-httpd-9377 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/pp//en/pp-v0.txt'
+2023-02-06T06:54:06.015829-0500 taler-exchange-httpd-9377 INFO Loading legal 
information from file 
`/home/priscilla/install/share/taler//exchange/pp//en/pp-v0.pdf'
+2023-02-06T06:54:06.018998-0500 taler-exchange-httpd-9377 INFO PG poll job 
active
+2023-02-06T06:54:06.019037-0500 taler-exchange-httpd-9377 INFO PG poll job 
finishes after 0 events
+2023-02-06T06:54:06.019056-0500 taler-exchange-httpd-9377 INFO Resubscribing
+2023-02-06T06:54:06.715061-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:06.715195-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T06:54:06.715612-0500 taler-exchange-secmod-rsa-9375 INFO 
Initializing new client 0x55eb6dd3d5f0
+2023-02-06T06:54:06.715704-0500 taler-exchange-secmod-rsa-9375 INFO Sending 
message of length 0
+2023-02-06T06:54:06.715742-0500 taler-exchange-secmod-rsa-9375 INFO Sending 
RSA SYNCED message to 0x55eb6dd3d5f0
+2023-02-06T06:54:06.715782-0500 taler-exchange-secmod-rsa-9375 INFO Sending 
message of type 10 and length 4
+2023-02-06T06:54:06.715817-0500 taler-exchange-secmod-rsa-9375 INFO Sending 
message of length 4
+2023-02-06T06:54:06.715891-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 10 and length 4
+2023-02-06T06:54:06.715953-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Now synchronized 
with RSA helper
+2023-02-06T06:54:06.716280-0500 taler-exchange-secmod-cs-9376 INFO 
Initializing new client 0x55c14c6d1ac0
+2023-02-06T06:54:06.716427-0500 taler-exchange-secmod-cs-9376 INFO Sending 
message of length 34927
+2023-02-06T06:54:06.716482-0500 taler-exchange-secmod-cs-9376 INFO Sending CS 
SYNCED message to 0x55c14c6d1ac0
+2023-02-06T06:54:06.716512-0500 taler-exchange-secmod-cs-9376 INFO Sending 
message of type 15 and length 4
+2023-02-06T06:54:06.716534-0500 taler-exchange-secmod-cs-9376 INFO Sending 
message of length 4
+2023-02-06T06:54:06.716656-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.716720-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
0HBYZESC (coin_eur_ct_1)
+2023-02-06T06:54:06.717076-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 0HBYZESC for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.717186-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.717226-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
GGDHX9HW (coin_eur_ct_1)
+2023-02-06T06:54:06.717519-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key GGDHX9HW for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.717581-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.717614-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
F2EWTKD3 (coin_eur_ct_1)
+2023-02-06T06:54:06.717908-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key F2EWTKD3 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.717968-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.718001-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
B2HHD9NH (coin_eur_ct_1)
+2023-02-06T06:54:06.718295-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key B2HHD9NH for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.718370-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.718408-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
PEEX5AR0 (coin_eur_ct_1)
+2023-02-06T06:54:06.718709-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key PEEX5AR0 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.718782-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.718814-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
P6HYWD63 (coin_eur_ct_1)
+2023-02-06T06:54:06.719082-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key P6HYWD63 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.719138-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.719168-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
PEYA8W42 (coin_eur_ct_1)
+2023-02-06T06:54:06.719438-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key PEYA8W42 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.719508-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.719539-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
NHCTNY39 (coin_eur_ct_1)
+2023-02-06T06:54:06.719809-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key NHCTNY39 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.719865-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.719895-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
B21XQMF4 (coin_eur_ct_1)
+2023-02-06T06:54:06.720163-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key B21XQMF4 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.720218-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.720248-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
E3YKJN1Q (coin_eur_ct_1)
+2023-02-06T06:54:06.720520-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key E3YKJN1Q for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.720575-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.720605-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
PV7NAZTW (coin_eur_ct_1)
+2023-02-06T06:54:06.720875-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key PV7NAZTW for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.720943-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.720974-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
JAB85TJ6 (coin_eur_ct_1)
+2023-02-06T06:54:06.721239-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key JAB85TJ6 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.721294-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.721324-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
S2T4307C (coin_eur_ct_1)
+2023-02-06T06:54:06.721593-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key S2T4307C for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.721648-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.721678-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
C7330F6E (coin_eur_ct_1)
+2023-02-06T06:54:06.721951-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key C7330F6E for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.722019-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.722068-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
6FZ6YY3Z (coin_eur_ct_1)
+2023-02-06T06:54:06.722340-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 6FZ6YY3Z for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.722395-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.722425-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
2AS77WWH (coin_eur_ct_1)
+2023-02-06T06:54:06.722705-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 2AS77WWH for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.722764-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.722794-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
0Z5ASDD1 (coin_eur_ct_1)
+2023-02-06T06:54:06.723065-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 0Z5ASDD1 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.723119-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.723149-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
ZFCCB4NP (coin_eur_ct_1)
+2023-02-06T06:54:06.723422-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key ZFCCB4NP for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.723489-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.723519-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
DSVFAHG5 (coin_eur_ct_1)
+2023-02-06T06:54:06.723790-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key DSVFAHG5 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.723845-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.723875-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
6AMMV375 (coin_eur_ct_1)
+2023-02-06T06:54:06.724144-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 6AMMV375 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.724198-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.724228-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
8F542D0D (coin_eur_ct_1)
+2023-02-06T06:54:06.724499-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 8F542D0D for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.724566-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.724597-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
5E8D6NWR (coin_eur_ct_1)
+2023-02-06T06:54:06.724869-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 5E8D6NWR for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.724924-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.724955-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
S6Q790SJ (coin_eur_ct_1)
+2023-02-06T06:54:06.725226-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key S6Q790SJ for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.725281-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.725325-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
26JXP8RT (coin_eur_ct_1)
+2023-02-06T06:54:06.725704-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 26JXP8RT for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.725797-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.725841-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
ATY8716T (coin_eur_ct_1)
+2023-02-06T06:54:06.726246-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key ATY8716T for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.726309-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.726351-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
1MXZTSEZ (coin_eur_ct_1)
+2023-02-06T06:54:06.726762-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 1MXZTSEZ for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.726832-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.726870-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
350DC33S (coin_eur_ct_1)
+2023-02-06T06:54:06.727265-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 350DC33S for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.727329-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.727367-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
36R5CB4N (coin_eur_ct_1)
+2023-02-06T06:54:06.727762-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 36R5CB4N for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.727849-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.727888-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
TK6XPZYV (coin_eur_ct_1)
+2023-02-06T06:54:06.728287-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key TK6XPZYV for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.728352-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.728392-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
HXD2F8NV (coin_eur_ct_1)
+2023-02-06T06:54:06.728784-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key HXD2F8NV for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.728857-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.728897-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
DDD28W23 (coin_eur_ct_1)
+2023-02-06T06:54:06.729284-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key DDD28W23 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.729374-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.729414-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
PCXYGR1H (coin_eur_ct_1)
+2023-02-06T06:54:06.729807-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key PCXYGR1H for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.729874-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.729913-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
QTFTJRZ5 (coin_eur_ct_1)
+2023-02-06T06:54:06.730343-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key QTFTJRZ5 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.730410-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.730453-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
6QFYM0ZX (coin_eur_ct_1)
+2023-02-06T06:54:06.730911-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 6QFYM0ZX for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.730993-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.731036-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
ZBE6JJVS (coin_eur_ct_1)
+2023-02-06T06:54:06.731468-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key ZBE6JJVS for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.731565-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.731607-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
0YN0G3GQ (coin_eur_ct_1)
+2023-02-06T06:54:06.732045-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 0YN0G3GQ for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.732120-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.732172-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
7AWENDKW (coin_eur_ct_1)
+2023-02-06T06:54:06.732610-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 7AWENDKW for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.732682-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.732728-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
3WQFXHPZ (coin_eur_ct_1)
+2023-02-06T06:54:06.733162-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 3WQFXHPZ for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.733253-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.733300-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
KSR74W5Q (coin_eur_ct_1)
+2023-02-06T06:54:06.733725-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key KSR74W5Q for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.733791-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.733833-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
0AN04DDB (coin_eur_ct_1)
+2023-02-06T06:54:06.734262-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 0AN04DDB for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.734329-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.734371-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
V0V2M23K (coin_eur_ct_1)
+2023-02-06T06:54:06.734808-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key V0V2M23K for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.734905-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.734948-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
HPVNVRJ2 (coin_eur_ct_1)
+2023-02-06T06:54:06.735387-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key HPVNVRJ2 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.735455-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.735498-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
QBRVZ71M (coin_eur_ct_1)
+2023-02-06T06:54:06.735927-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key QBRVZ71M for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.736002-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.736045-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
VBRXFKDT (coin_eur_ct_1)
+2023-02-06T06:54:06.736473-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key VBRXFKDT for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.736543-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.736586-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
RR7S5ERY (coin_eur_ct_1)
+2023-02-06T06:54:06.737016-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key RR7S5ERY for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.737112-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.737161-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
BNPZEFNM (coin_eur_ct_1)
+2023-02-06T06:54:06.737538-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key BNPZEFNM for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.737615-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.737663-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
THHWXC1T (coin_eur_ct_1)
+2023-02-06T06:54:06.738106-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key THHWXC1T for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.738174-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.738218-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
77HS2480 (coin_eur_ct_1)
+2023-02-06T06:54:06.738659-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 77HS2480 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.738756-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.738797-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
S4KDZZ4K (coin_eur_ct_1)
+2023-02-06T06:54:06.739223-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key S4KDZZ4K for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.739296-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.739341-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
42XV03V8 (coin_eur_ct_1)
+2023-02-06T06:54:06.739775-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 42XV03V8 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.739846-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.739891-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
M78KJAXF (coin_eur_ct_1)
+2023-02-06T06:54:06.740323-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key M78KJAXF for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.740407-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.740452-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
P40RJ69A (coin_eur_ct_1)
+2023-02-06T06:54:06.740881-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key P40RJ69A for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.740976-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 166
+2023-02-06T06:54:06.741022-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
AMKH6XA7 (coin_eur_ct_1)
+2023-02-06T06:54:06.741450-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key AMKH6XA7 for denomination type coin_eur_ct_1 with validity 7 days
+2023-02-06T06:54:06.741520-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.741566-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
1GHAW81F (coin_eur_ct_10)
+2023-02-06T06:54:06.741995-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 1GHAW81F for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.742067-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.742111-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
HEB1FFF6 (coin_eur_ct_10)
+2023-02-06T06:54:06.742544-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key HEB1FFF6 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.742644-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.742694-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
ZS21B83R (coin_eur_ct_10)
+2023-02-06T06:54:06.743115-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key ZS21B83R for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.743188-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.743233-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
Y9JFK8Q7 (coin_eur_ct_10)
+2023-02-06T06:54:06.743655-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key Y9JFK8Q7 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.743726-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.743771-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
822EJGJB (coin_eur_ct_10)
+2023-02-06T06:54:06.744156-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 822EJGJB for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.744254-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.744303-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
KE6PZTPN (coin_eur_ct_10)
+2023-02-06T06:54:06.744684-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key KE6PZTPN for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.744760-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.744806-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
XZNHNMZB (coin_eur_ct_10)
+2023-02-06T06:54:06.745239-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key XZNHNMZB for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.745326-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.745369-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
3YRT7NAC (coin_eur_ct_10)
+2023-02-06T06:54:06.745802-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 3YRT7NAC for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.745869-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.745909-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
W9HH1N7W (coin_eur_ct_10)
+2023-02-06T06:54:06.746339-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key W9HH1N7W for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.746429-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.746486-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
2TNPZ8EY (coin_eur_ct_10)
+2023-02-06T06:54:06.746929-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 2TNPZ8EY for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.746996-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.747037-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
9CGT4HS8 (coin_eur_ct_10)
+2023-02-06T06:54:06.747462-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 9CGT4HS8 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.747532-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.747580-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
G786QPSA (coin_eur_ct_10)
+2023-02-06T06:54:06.748008-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key G786QPSA for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.748106-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.748150-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
SJ9FC90C (coin_eur_ct_10)
+2023-02-06T06:54:06.748547-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key SJ9FC90C for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.748616-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.748657-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
TECN7R7J (coin_eur_ct_10)
+2023-02-06T06:54:06.749064-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key TECN7R7J for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.749136-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.749179-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
GSRQJ50J (coin_eur_ct_10)
+2023-02-06T06:54:06.749614-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key GSRQJ50J for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.749681-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.749722-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
QV3KKTN3 (coin_eur_ct_10)
+2023-02-06T06:54:06.750151-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key QV3KKTN3 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.750253-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.750314-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
4K0PWB1A (coin_eur_ct_10)
+2023-02-06T06:54:06.750757-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 4K0PWB1A for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.750834-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.750877-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
C3WM9ZJH (coin_eur_ct_10)
+2023-02-06T06:54:06.751313-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key C3WM9ZJH for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.751383-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.751427-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
DWGM5ZG3 (coin_eur_ct_10)
+2023-02-06T06:54:06.751863-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key DWGM5ZG3 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.751959-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.752011-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
BW1EXZBQ (coin_eur_ct_10)
+2023-02-06T06:54:06.752442-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key BW1EXZBQ for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.752514-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.752560-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
ACY1AXK4 (coin_eur_ct_10)
+2023-02-06T06:54:06.752997-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key ACY1AXK4 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.753068-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.753113-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
FBZZ696F (coin_eur_ct_10)
+2023-02-06T06:54:06.753541-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key FBZZ696F for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.753611-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.753655-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
ED9QBE10 (coin_eur_ct_10)
+2023-02-06T06:54:06.754070-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key ED9QBE10 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.754165-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.754212-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
GT1C1K81 (coin_eur_ct_10)
+2023-02-06T06:54:06.754652-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key GT1C1K81 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.754722-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.754764-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
JXBDN4WA (coin_eur_ct_10)
+2023-02-06T06:54:06.755190-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key JXBDN4WA for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.755255-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.755327-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
Z09WBTX3 (coin_eur_ct_10)
+2023-02-06T06:54:06.755763-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key Z09WBTX3 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.755854-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.755897-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
QSA1562V (coin_eur_ct_10)
+2023-02-06T06:54:06.756327-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key QSA1562V for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.756393-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.756435-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
BW58WNNC (coin_eur_ct_10)
+2023-02-06T06:54:06.756863-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key BW58WNNC for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.756928-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.756970-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
V8F6PR1K (coin_eur_ct_10)
+2023-02-06T06:54:06.757394-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key V8F6PR1K for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.757490-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.757535-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
A4WBC98G (coin_eur_ct_10)
+2023-02-06T06:54:06.757957-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key A4WBC98G for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.758028-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.758071-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
P3W1EWYM (coin_eur_ct_10)
+2023-02-06T06:54:06.758514-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key P3W1EWYM for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.758588-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.758635-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
QCQBT54Y (coin_eur_ct_10)
+2023-02-06T06:54:06.759045-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key QCQBT54Y for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.759118-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.759166-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
5D9J81KM (coin_eur_ct_10)
+2023-02-06T06:54:06.759564-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 5D9J81KM for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.759665-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.759706-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
TZ8EAYS5 (coin_eur_ct_10)
+2023-02-06T06:54:06.760141-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key TZ8EAYS5 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.760206-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.760245-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
DJWX5THB (coin_eur_ct_10)
+2023-02-06T06:54:06.760693-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key DJWX5THB for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.760759-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.760800-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
5D50XCQK (coin_eur_ct_10)
+2023-02-06T06:54:06.761230-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 5D50XCQK for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.761325-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.761370-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
6T0NPFE5 (coin_eur_ct_10)
+2023-02-06T06:54:06.761804-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 6T0NPFE5 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.761873-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.761918-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
S2X5WFFN (coin_eur_ct_10)
+2023-02-06T06:54:06.762351-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key S2X5WFFN for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.762420-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.762477-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
TYZH9WR2 (coin_eur_ct_10)
+2023-02-06T06:54:06.762913-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key TYZH9WR2 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.762983-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.763032-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
M4RXJMYQ (coin_eur_ct_10)
+2023-02-06T06:54:06.763466-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key M4RXJMYQ for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.763562-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.763612-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
WDPWHXZV (coin_eur_ct_10)
+2023-02-06T06:54:06.764040-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key WDPWHXZV for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.764110-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.764158-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
N5AW88W9 (coin_eur_ct_10)
+2023-02-06T06:54:06.764583-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key N5AW88W9 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.764653-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.764702-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
T77WC2VC (coin_eur_ct_10)
+2023-02-06T06:54:06.765124-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key T77WC2VC for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.765222-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.765271-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
6WMHZ8F0 (coin_eur_ct_10)
+2023-02-06T06:54:06.765711-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 6WMHZ8F0 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.765785-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.765834-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
GDN13SQP (coin_eur_ct_10)
+2023-02-06T06:54:06.766217-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key GDN13SQP for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.766294-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.766344-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
8KSZ012E (coin_eur_ct_10)
+2023-02-06T06:54:06.766738-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 8KSZ012E for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.766836-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.766878-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
K1J4DVPR (coin_eur_ct_10)
+2023-02-06T06:54:06.767172-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key K1J4DVPR for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.767230-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.767263-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
6AXJ4NNA (coin_eur_ct_10)
+2023-02-06T06:54:06.767566-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 6AXJ4NNA for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.767624-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.767656-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
WH8CYXT5 (coin_eur_ct_10)
+2023-02-06T06:54:06.767962-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key WH8CYXT5 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.768020-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.768052-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
WV34P5EM (coin_eur_ct_10)
+2023-02-06T06:54:06.768345-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key WV34P5EM for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.768417-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.768449-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
JCPVQMZ7 (coin_eur_ct_10)
+2023-02-06T06:54:06.768742-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key JCPVQMZ7 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.768800-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.768832-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
ESS4M3C9 (coin_eur_ct_10)
+2023-02-06T06:54:06.769124-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key ESS4M3C9 for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.769183-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 167
+2023-02-06T06:54:06.769228-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
2B468NCN (coin_eur_ct_10)
+2023-02-06T06:54:06.769553-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 2B468NCN for denomination type coin_eur_ct_10 with validity 7 days
+2023-02-06T06:54:06.769639-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.769673-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
XJMFT3QF (coin_eur_1)
+2023-02-06T06:54:06.769986-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key XJMFT3QF for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.770046-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.770078-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
K87W7J5C (coin_eur_1)
+2023-02-06T06:54:06.770382-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key K87W7J5C for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.770440-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.770506-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
P4JAYQ28 (coin_eur_1)
+2023-02-06T06:54:06.770792-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key P4JAYQ28 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.770846-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.770880-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
SJJ50R2X (coin_eur_1)
+2023-02-06T06:54:06.771150-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key SJJ50R2X for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.771217-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.771249-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
94CJQP7T (coin_eur_1)
+2023-02-06T06:54:06.771527-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 94CJQP7T for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.771581-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.771614-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
4F2DH4G5 (coin_eur_1)
+2023-02-06T06:54:06.771890-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 4F2DH4G5 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.771945-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.771978-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
KAFT0J59 (coin_eur_1)
+2023-02-06T06:54:06.772248-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key KAFT0J59 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.772315-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.772347-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
ST24V7W9 (coin_eur_1)
+2023-02-06T06:54:06.772617-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key ST24V7W9 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.772670-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.772703-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
Z7ZRATSG (coin_eur_1)
+2023-02-06T06:54:06.772973-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key Z7ZRATSG for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.773037-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.773071-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
7SAECQRC (coin_eur_1)
+2023-02-06T06:54:06.773351-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 7SAECQRC for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.773417-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.773452-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
K9RQ5K5P (coin_eur_1)
+2023-02-06T06:54:06.773742-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key K9RQ5K5P for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.773795-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.773825-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
891291QA (coin_eur_1)
+2023-02-06T06:54:06.774094-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 891291QA for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.774148-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.774177-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
FK1NXT7G (coin_eur_1)
+2023-02-06T06:54:06.774447-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key FK1NXT7G for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.774512-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.774556-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
1FKD64YY (coin_eur_1)
+2023-02-06T06:54:06.774847-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 1FKD64YY for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.774914-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.774944-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
83NKZQ1K (coin_eur_1)
+2023-02-06T06:54:06.775213-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 83NKZQ1K for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.775267-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.775296-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
H3T838QD (coin_eur_1)
+2023-02-06T06:54:06.775565-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key H3T838QD for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.775618-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.775647-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
YXXKPS80 (coin_eur_1)
+2023-02-06T06:54:06.775913-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key YXXKPS80 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.775978-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.776008-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
MNDDK5R1 (coin_eur_1)
+2023-02-06T06:54:06.776279-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key MNDDK5R1 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.776332-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.776371-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
AVXQWRE7 (coin_eur_1)
+2023-02-06T06:54:06.776647-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key AVXQWRE7 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.776701-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.776730-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
4YWJKR95 (coin_eur_1)
+2023-02-06T06:54:06.776998-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 4YWJKR95 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.777051-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.777080-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
ZQQP5796 (coin_eur_1)
+2023-02-06T06:54:06.777350-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key ZQQP5796 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.777416-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.777445-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
EC835AW5 (coin_eur_1)
+2023-02-06T06:54:06.777713-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key EC835AW5 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.777766-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.777795-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
DD2VMX6J (coin_eur_1)
+2023-02-06T06:54:06.778063-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key DD2VMX6J for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.778116-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.778145-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
R9G5VSEZ (coin_eur_1)
+2023-02-06T06:54:06.778415-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key R9G5VSEZ for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.778489-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.778527-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
25G0F5KD (coin_eur_1)
+2023-02-06T06:54:06.778803-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 25G0F5KD for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.778856-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.778886-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
ZQTAG30D (coin_eur_1)
+2023-02-06T06:54:06.779153-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key ZQTAG30D for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.779205-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.779234-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
MDMNDHS6 (coin_eur_1)
+2023-02-06T06:54:06.779503-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key MDMNDHS6 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.779568-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.779597-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
22JMT3BQ (coin_eur_1)
+2023-02-06T06:54:06.779880-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 22JMT3BQ for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.779934-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.779963-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
C23FR09P (coin_eur_1)
+2023-02-06T06:54:06.780229-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key C23FR09P for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.780283-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.780312-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
QEX06NVS (coin_eur_1)
+2023-02-06T06:54:06.780582-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key QEX06NVS for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.780635-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.780665-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
NXNYQKAQ (coin_eur_1)
+2023-02-06T06:54:06.780933-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key NXNYQKAQ for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.780998-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.781028-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
T6XCN05P (coin_eur_1)
+2023-02-06T06:54:06.781297-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key T6XCN05P for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.781350-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.781380-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
SKZ04GZV (coin_eur_1)
+2023-02-06T06:54:06.781651-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key SKZ04GZV for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.781703-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.781732-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
QZX8W10Y (coin_eur_1)
+2023-02-06T06:54:06.782000-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key QZX8W10Y for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.782065-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.782094-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
H9EHNAM5 (coin_eur_1)
+2023-02-06T06:54:06.782366-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key H9EHNAM5 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.782418-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.782447-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
8FDG0NWX (coin_eur_1)
+2023-02-06T06:54:06.782718-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 8FDG0NWX for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.782765-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.782791-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
ES56PW6T (coin_eur_1)
+2023-02-06T06:54:06.783021-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key ES56PW6T for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.783076-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.783103-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
HXXAPD00 (coin_eur_1)
+2023-02-06T06:54:06.783336-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key HXXAPD00 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.783393-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.783419-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
BKGPS6D4 (coin_eur_1)
+2023-02-06T06:54:06.783651-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key BKGPS6D4 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.783698-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.783723-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
JSKC0R41 (coin_eur_1)
+2023-02-06T06:54:06.783958-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key JSKC0R41 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.784004-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.784030-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
567Y3VYF (coin_eur_1)
+2023-02-06T06:54:06.784262-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 567Y3VYF for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.784319-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.784345-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
SDR7CSF8 (coin_eur_1)
+2023-02-06T06:54:06.784578-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key SDR7CSF8 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.784625-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.784650-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
9EYGPK1E (coin_eur_1)
+2023-02-06T06:54:06.784883-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 9EYGPK1E for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.784929-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.784955-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
4BZMQ9BH (coin_eur_1)
+2023-02-06T06:54:06.785187-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 4BZMQ9BH for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.785233-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.785259-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
HZ734SYP (coin_eur_1)
+2023-02-06T06:54:06.785491-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key HZ734SYP for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.785549-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.785575-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
TSHSRX35 (coin_eur_1)
+2023-02-06T06:54:06.785810-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key TSHSRX35 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.785856-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.785890-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
BQ4C9GMT (coin_eur_1)
+2023-02-06T06:54:06.786128-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key BQ4C9GMT for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.786174-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.786200-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
T3MPV2KW (coin_eur_1)
+2023-02-06T06:54:06.786431-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key T3MPV2KW for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.786494-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.786525-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
2ZTVE2MT (coin_eur_1)
+2023-02-06T06:54:06.786782-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 2ZTVE2MT for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.786830-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.786855-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
T26G5A0C (coin_eur_1)
+2023-02-06T06:54:06.787090-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key T26G5A0C for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.787136-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.787162-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
0A03DMFT (coin_eur_1)
+2023-02-06T06:54:06.787398-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 0A03DMFT for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.787455-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.787480-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
SZDKF869 (coin_eur_1)
+2023-02-06T06:54:06.787713-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key SZDKF869 for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.787759-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.787784-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
A7AETFXH (coin_eur_1)
+2023-02-06T06:54:06.788019-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key A7AETFXH for denomination type coin_eur_1 with validity 7 days
+2023-02-06T06:54:06.788065-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.788091-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
EW528A72 (coin_eur_5)
+2023-02-06T06:54:06.788324-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key EW528A72 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.788370-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.788396-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
MTBGBYJN (coin_eur_5)
+2023-02-06T06:54:06.788628-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key MTBGBYJN for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.788686-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.788711-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
J7XGY3JB (coin_eur_5)
+2023-02-06T06:54:06.788954-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key J7XGY3JB for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.789001-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.789026-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
GEERKG2F (coin_eur_5)
+2023-02-06T06:54:06.789322-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key GEERKG2F for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.789379-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.789415-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
K31Z9EHZ (coin_eur_5)
+2023-02-06T06:54:06.789769-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key K31Z9EHZ for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.789842-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.789875-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
RJR3RN6V (coin_eur_5)
+2023-02-06T06:54:06.790221-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key RJR3RN6V for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.790273-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.790306-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
JEM5B57M (coin_eur_5)
+2023-02-06T06:54:06.790660-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key JEM5B57M for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.790716-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.790749-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
9E5Y12XK (coin_eur_5)
+2023-02-06T06:54:06.791096-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 9E5Y12XK for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.791148-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.791180-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
6N2P456C (coin_eur_5)
+2023-02-06T06:54:06.791532-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 6N2P456C for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.791604-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.791637-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
BQH4V4FJ (coin_eur_5)
+2023-02-06T06:54:06.791988-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key BQH4V4FJ for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.792040-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.792073-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
4CGGRE8B (coin_eur_5)
+2023-02-06T06:54:06.792418-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 4CGGRE8B for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.792471-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.792504-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
TPEA99F5 (coin_eur_5)
+2023-02-06T06:54:06.792853-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key TPEA99F5 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.792936-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.792973-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
3G8YKGDZ (coin_eur_5)
+2023-02-06T06:54:06.793326-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 3G8YKGDZ for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.793377-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.793413-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
PQK9DW0J (coin_eur_5)
+2023-02-06T06:54:06.793763-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key PQK9DW0J for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.793814-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.793847-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
SKCHYFB8 (coin_eur_5)
+2023-02-06T06:54:06.794198-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key SKCHYFB8 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.794270-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.794307-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
5FTMD5S9 (coin_eur_5)
+2023-02-06T06:54:06.794658-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 5FTMD5S9 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.794711-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.794742-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
2Z5WBE1Y (coin_eur_5)
+2023-02-06T06:54:06.795065-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 2Z5WBE1Y for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.795114-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.795144-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
42278A6A (coin_eur_5)
+2023-02-06T06:54:06.795470-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 42278A6A for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.795518-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.795548-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
F6ZNCY50 (coin_eur_5)
+2023-02-06T06:54:06.795869-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key F6ZNCY50 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.795936-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.795967-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
0TNFW880 (coin_eur_5)
+2023-02-06T06:54:06.796295-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 0TNFW880 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.796342-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.796373-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
VDHB19ZQ (coin_eur_5)
+2023-02-06T06:54:06.796694-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key VDHB19ZQ for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.796743-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.796784-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
NABR9NEM (coin_eur_5)
+2023-02-06T06:54:06.797106-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key NABR9NEM for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.797175-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.797205-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
KAHY3QBE (coin_eur_5)
+2023-02-06T06:54:06.797523-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key KAHY3QBE for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.797580-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.797618-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
G9CYRY0G (coin_eur_5)
+2023-02-06T06:54:06.797935-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key G9CYRY0G for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.797989-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.798022-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
6CXV715K (coin_eur_5)
+2023-02-06T06:54:06.798336-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 6CXV715K for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.798388-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.798420-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
C01QDVM8 (coin_eur_5)
+2023-02-06T06:54:06.798763-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key C01QDVM8 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.798836-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.798872-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
HV7NE0CE (coin_eur_5)
+2023-02-06T06:54:06.799201-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key HV7NE0CE for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.799255-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.799290-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
MFYBSS0B (coin_eur_5)
+2023-02-06T06:54:06.799619-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key MFYBSS0B for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.799671-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.799702-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
X2H5VR7R (coin_eur_5)
+2023-02-06T06:54:06.800029-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key X2H5VR7R for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.800099-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.800136-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
7TA14R36 (coin_eur_5)
+2023-02-06T06:54:06.800452-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 7TA14R36 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.800506-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.800538-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
BMMSQP4W (coin_eur_5)
+2023-02-06T06:54:06.800872-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key BMMSQP4W for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.800921-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.800953-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
GF8NWX2R (coin_eur_5)
+2023-02-06T06:54:06.801272-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key GF8NWX2R for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.801340-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.801372-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
RX3HGJPP (coin_eur_5)
+2023-02-06T06:54:06.801697-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key RX3HGJPP for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.801746-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.801777-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
W8REVV63 (coin_eur_5)
+2023-02-06T06:54:06.802099-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key W8REVV63 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.802148-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.802180-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
3XT18ZQM (coin_eur_5)
+2023-02-06T06:54:06.802509-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 3XT18ZQM for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.802562-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.802598-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
6V7X34X1 (coin_eur_5)
+2023-02-06T06:54:06.802924-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 6V7X34X1 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.802997-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.803031-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
0873V44G (coin_eur_5)
+2023-02-06T06:54:06.803354-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 0873V44G for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.803405-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.803437-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
QXBKNKCW (coin_eur_5)
+2023-02-06T06:54:06.803756-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key QXBKNKCW for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.803807-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.803838-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
99MVDFSB (coin_eur_5)
+2023-02-06T06:54:06.804110-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 99MVDFSB for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.804183-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.804219-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
7VDVMFPK (coin_eur_5)
+2023-02-06T06:54:06.804533-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 7VDVMFPK for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.804601-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.804632-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
0C90WJFB (coin_eur_5)
+2023-02-06T06:54:06.804957-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 0C90WJFB for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.805003-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.805032-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
1HEBMHQB (coin_eur_5)
+2023-02-06T06:54:06.805352-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 1HEBMHQB for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.805405-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.805439-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
0QAXT1R4 (coin_eur_5)
+2023-02-06T06:54:06.805757-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 0QAXT1R4 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.805828-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.805862-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
8QFSDJD5 (coin_eur_5)
+2023-02-06T06:54:06.806187-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 8QFSDJD5 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.806239-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.806273-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
77X4WJTF (coin_eur_5)
+2023-02-06T06:54:06.806599-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 77X4WJTF for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.806652-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.806682-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
Y9C2ENMN (coin_eur_5)
+2023-02-06T06:54:06.806964-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key Y9C2ENMN for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.807025-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.807056-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
7NEATPW9 (coin_eur_5)
+2023-02-06T06:54:06.807340-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 7NEATPW9 for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.807383-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.807413-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
PQM7A33J (coin_eur_5)
+2023-02-06T06:54:06.807696-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key PQM7A33J for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.807738-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.807769-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
WMY0J01S (coin_eur_5)
+2023-02-06T06:54:06.808052-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key WMY0J01S for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.808111-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.808150-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
67RBHN8A (coin_eur_5)
+2023-02-06T06:54:06.808437-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 67RBHN8A for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.808482-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.808512-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
VHRZ65AV (coin_eur_5)
+2023-02-06T06:54:06.808786-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key VHRZ65AV for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.808835-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.808868-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
56CANKFY (coin_eur_5)
+2023-02-06T06:54:06.809119-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 56CANKFY for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.809168-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 2 and length 163
+2023-02-06T06:54:06.809201-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received CS key 
1FQ1YVGH (coin_eur_5)
+2023-02-06T06:54:06.809452-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO CS helper announces 
key 1FQ1YVGH for denomination type coin_eur_5 with validity 7 days
+2023-02-06T06:54:06.809504-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Received message of 
type 15 and length 4
+2023-02-06T06:54:06.809524-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Now synchronized 
with CS helper
+2023-02-06T06:54:06.809995-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 12 and length 152
+2023-02-06T06:54:06.810081-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 152
+2023-02-06T06:54:06.810293-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 12 and length 152
+2023-02-06T06:54:06.810322-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 152
+2023-02-06T06:54:06.810403-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO EdDSA helper 
announces signing key TQF9JT6Y with validity 84 days
+2023-02-06T06:54:06.810465-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 12 and length 152
+2023-02-06T06:54:06.810498-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 152
+2023-02-06T06:54:06.810619-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO EdDSA helper 
announces signing key HY5C7XPC with validity 84 days
+2023-02-06T06:54:06.810635-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 12 and length 152
+2023-02-06T06:54:06.810657-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 152
+2023-02-06T06:54:06.810789-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 12 and length 152
+2023-02-06T06:54:06.810809-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 152
+2023-02-06T06:54:06.810812-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO EdDSA helper 
announces signing key BVHY1YY7 with validity 84 days
+2023-02-06T06:54:06.810828-0500 taler-exchange-secmod-eddsa-9374 INFO Client 
0x56447d4a4ec0 synced
+2023-02-06T06:54:06.810853-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 19 and length 4
+2023-02-06T06:54:06.810871-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 4
+2023-02-06T06:54:06.810995-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO EdDSA helper 
announces signing key R6J1SSEN with validity 84 days
+2023-02-06T06:54:06.811177-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO EdDSA helper 
announces signing key BQSE5CAN with validity 84 days
+2023-02-06T06:54:06.811210-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Now synchronized 
with EdDSA helper
+2023-02-06T06:54:06.813018-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Loading global fees 
from DB: 0
+2023-02-06T06:54:06.885134-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) WARNING No denomination 
keys available. Refusing to generate /keys response.
+2023-02-06T06:54:06.885204-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Suspending /keys 
request until key material changes
+2023-02-06T06:54:06.929588-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:06.929705-0500 
taler-exchange-httpd-9377(DJXENN6G5PPR1V7ZQN9S6R4FVG) INFO Handling request 
(GET) for URL '/seed'
+2023-02-06T06:54:06.929821-0500 
taler-exchange-httpd-9377(DJXENN6G5PPR1V7ZQN9S6R4FVG) INFO Request for `/seed' 
completed (0)
+2023-02-06T06:54:06.931175-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Starting main test loop
+2023-02-06T06:54:06.932478-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Starting Fakebank on port 8082 (http://localhost:8082/2/)
+Warning: "1", specified for thread pool size, is ignored. Thread pool is not 
used.
+2023-02-06T06:54:06.932882-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `add-auditor-OK'
+2023-02-06T06:54:06.934954-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:06.935068-0500 
taler-exchange-httpd-9377(XX504PR54DWMC8YGR5WS1WAFPC) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T06:54:06.935653-0500 
taler-exchange-httpd-9377(XX504PR54DWMC8YGR5WS1WAFPC) INFO Loading global fees 
from DB: 0
+2023-02-06T06:54:06.937960-0500 
taler-exchange-httpd-9377(XX504PR54DWMC8YGR5WS1WAFPC) WARNING No denomination 
keys available. Refusing to generate /keys response.
+2023-02-06T06:54:06.938026-0500 
taler-exchange-httpd-9377(XX504PR54DWMC8YGR5WS1WAFPC) INFO Suspending /keys 
request until key material changes
+2023-02-06T06:54:06.938110-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:06.938199-0500 
taler-exchange-httpd-9377(6CTPQKSCQD7AS7R8JNCWQ27EKG) INFO Handling request 
(POST) for URL '/management/auditors'
+2023-02-06T06:54:06.938239-0500 
taler-exchange-httpd-9377(6CTPQKSCQD7AS7R8JNCWQ27EKG) INFO Handling request 
(POST) for URL '/management/auditors'
+2023-02-06T06:54:06.938270-0500 
taler-exchange-httpd-9377(6CTPQKSCQD7AS7R8JNCWQ27EKG) INFO Handling request 
(POST) for URL '/management/auditors'
+2023-02-06T06:54:06.938684-0500 
taler-exchange-httpd-9377(6CTPQKSCQD7AS7R8JNCWQ27EKG) INFO Starting transaction 
`add auditor'
+2023-02-06T06:54:06.940717-0500 
taler-exchange-httpd-9377(6CTPQKSCQD7AS7R8JNCWQ27EKG) INFO Executing command 
`NOTIFY XRE2709K6TYDBVARD9Y5SCZY7VHE4D5DKF0R8DHQ4X5T13E8X2X60, '''
+2023-02-06T06:54:06.940958-0500 
taler-exchange-httpd-9377(6CTPQKSCQD7AS7R8JNCWQ27EKG) INFO PG poll job active
+2023-02-06T06:54:06.941006-0500 
taler-exchange-httpd-9377(6CTPQKSCQD7AS7R8JNCWQ27EKG) INFO PG poll job finishes 
after 0 events
+2023-02-06T06:54:06.943629-0500 
taler-exchange-httpd-9377(6CTPQKSCQD7AS7R8JNCWQ27EKG) INFO Request for 
`/management/auditors' completed (0)
+2023-02-06T06:54:06.943699-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T06:54:06.943735-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `add-wire-account'
+2023-02-06T06:54:06.943972-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Loading global fees 
from DB: 0
+2023-02-06T06:54:07.071490-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) WARNING No denomination 
keys available. Refusing to generate /keys response.
+2023-02-06T06:54:07.071573-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Suspending /keys 
request until key material changes
+2023-02-06T06:54:07.071608-0500 
taler-exchange-httpd-9377(XX504PR54DWMC8YGR5WS1WAFPC) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T06:54:07.071664-0500 
taler-exchange-httpd-9377(XX504PR54DWMC8YGR5WS1WAFPC) INFO Suspending /keys 
request until key material changes
+2023-02-06T06:54:07.071771-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:07.071876-0500 
taler-exchange-httpd-9377(DDBDNSTB2D8S9EVVGYVS8ASFM8) INFO Handling request 
(POST) for URL '/management/wire'
+2023-02-06T06:54:07.071912-0500 
taler-exchange-httpd-9377(DDBDNSTB2D8S9EVVGYVS8ASFM8) INFO Handling request 
(POST) for URL '/management/wire'
+2023-02-06T06:54:07.071940-0500 
taler-exchange-httpd-9377(DDBDNSTB2D8S9EVVGYVS8ASFM8) INFO Handling request 
(POST) for URL '/management/wire'
+2023-02-06T06:54:07.072526-0500 
taler-exchange-httpd-9377(DDBDNSTB2D8S9EVVGYVS8ASFM8) INFO Starting transaction 
`add wire'
+2023-02-06T06:54:07.076763-0500 
taler-exchange-httpd-9377(DDBDNSTB2D8S9EVVGYVS8ASFM8) INFO Executing command 
`NOTIFY XAA6QKJBC4S2DFWADVSRJBSD0683ZVFMHRRXZEXRP9773Q0X17750, '''
+2023-02-06T06:54:07.077032-0500 
taler-exchange-httpd-9377(DDBDNSTB2D8S9EVVGYVS8ASFM8) INFO PG poll job active
+2023-02-06T06:54:07.077094-0500 
taler-exchange-httpd-9377(DDBDNSTB2D8S9EVVGYVS8ASFM8) INFO Received 
notification xre2709k6tydbvard9y5sczy7vhe4d5dkf0r8dhq4x5t13e8x2x60 with extra 
data `'
+2023-02-06T06:54:07.077131-0500 
taler-exchange-httpd-9377(DDBDNSTB2D8S9EVVGYVS8ASFM8) INFO Received /wire 
update event
+2023-02-06T06:54:07.077155-0500 
taler-exchange-httpd-9377(DDBDNSTB2D8S9EVVGYVS8ASFM8) INFO Received /keys 
update event
+2023-02-06T06:54:07.077183-0500 
taler-exchange-httpd-9377(DDBDNSTB2D8S9EVVGYVS8ASFM8) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:07.077283-0500 
taler-exchange-httpd-9377(DDBDNSTB2D8S9EVVGYVS8ASFM8) INFO Request for 
`/management/wire' completed (0)
+2023-02-06T06:54:07.077342-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T06:54:07.077366-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `offline-sign-future-keys'
+2023-02-06T06:54:07.077732-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Loading global fees 
from DB: 0
+2023-02-06T06:54:07.127587-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) WARNING No denomination 
keys available. Refusing to generate /keys response.
+2023-02-06T06:54:07.127680-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Suspending /keys 
request until key material changes
+2023-02-06T06:54:07.127714-0500 
taler-exchange-httpd-9377(XX504PR54DWMC8YGR5WS1WAFPC) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T06:54:07.127748-0500 
taler-exchange-httpd-9377(XX504PR54DWMC8YGR5WS1WAFPC) INFO Suspending /keys 
request until key material changes
+2023-02-06T06:54:07.127853-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:07.127936-0500 
taler-exchange-httpd-9377(N7AD7P248FEDRJN56D1F5MTHFC) INFO Handling request 
(GET) for URL '/management/keys'
+2023-02-06T06:54:07.132647-0500 
taler-exchange-httpd-9377(N7AD7P248FEDRJN56D1F5MTHFC) INFO Returning GET 
/management/keys response:
+2023-02-06T06:54:07.142545-0500 
taler-exchange-httpd-9377(N7AD7P248FEDRJN56D1F5MTHFC) INFO Request for 
`/management/keys' completed (0)
+2023-02-06T06:54:07.200534-0500 taler-exchange-offline-9420 INFO Using master 
public key HGYF3P1M
+2023-02-06T06:54:07.270740-0500 taler-exchange-offline-9420 INFO Uploading 212 
denomination and 5 signing key signatures
+2023-02-06T06:54:07.275442-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:07.275560-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Handling request 
(POST) for URL '/management/keys'
+2023-02-06T06:54:07.275599-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Handling request 
(POST) for URL '/management/keys'
+2023-02-06T06:54:07.275673-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Handling request 
(POST) for URL '/management/keys'
+2023-02-06T06:54:07.275725-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Handling request 
(POST) for URL '/management/keys'
+2023-02-06T06:54:07.278378-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Received 
/management/keys
+2023-02-06T06:54:07.279661-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Received 212 
denomination and 5 signing key signatures
+2023-02-06T06:54:07.279707-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Starting transaction 
`add keys'
+2023-02-06T06:54:07.281995-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `026B92PV'
+2023-02-06T06:54:07.282956-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `1BJ4CBH5'
+2023-02-06T06:54:07.283964-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `1ETATBA2'
+2023-02-06T06:54:07.284951-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `3TT3RH2Y'
+2023-02-06T06:54:07.285892-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `41M18REB'
+2023-02-06T06:54:07.286753-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `4DTBVMHD'
+2023-02-06T06:54:07.287573-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `4K829CTS'
+2023-02-06T06:54:07.288382-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `6BJ2PV81'
+2023-02-06T06:54:07.289197-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `6QMEPPJK'
+2023-02-06T06:54:07.289990-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `7TWFDPAB'
+2023-02-06T06:54:07.290716-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `8ET1NSMN'
+2023-02-06T06:54:07.291479-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `90E5BD8W'
+2023-02-06T06:54:07.292221-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `93R83JDB'
+2023-02-06T06:54:07.292966-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `APP39Z1E'
+2023-02-06T06:54:07.293731-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `B1T3E6BR'
+2023-02-06T06:54:07.294476-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `BM62SG9M'
+2023-02-06T06:54:07.295222-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `CPECSN4B'
+2023-02-06T06:54:07.295944-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `ENT3PXCE'
+2023-02-06T06:54:07.296720-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `F1C9TVNE'
+2023-02-06T06:54:07.297641-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `GX4CA402'
+2023-02-06T06:54:07.298514-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `H3RDX61N'
+2023-02-06T06:54:07.299312-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `H0T7W7KQ'
+2023-02-06T06:54:07.300154-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `HB646EGW'
+2023-02-06T06:54:07.301067-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `HDECQYS1'
+2023-02-06T06:54:07.302131-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `J4R43592'
+2023-02-06T06:54:07.302989-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `KAW2GRC5'
+2023-02-06T06:54:07.303834-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `M0Y5KEGN'
+2023-02-06T06:54:07.304718-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `PR82HC84'
+2023-02-06T06:54:07.305520-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `QT06T04Q'
+2023-02-06T06:54:07.306293-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `SDG9S3VK'
+2023-02-06T06:54:07.306993-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `SNACB3EX'
+2023-02-06T06:54:07.307712-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `TKP0PCVP'
+2023-02-06T06:54:07.308423-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `TM03GR1P'
+2023-02-06T06:54:07.309203-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `W5WCNHA4'
+2023-02-06T06:54:07.309987-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `WK47ZE9P'
+2023-02-06T06:54:07.310815-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `WYR5NBVB'
+2023-02-06T06:54:07.311601-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `X3C84RQ6'
+2023-02-06T06:54:07.312389-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `X2JEWB54'
+2023-02-06T06:54:07.313180-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `X7A8QJWZ'
+2023-02-06T06:54:07.313990-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `XPEC563R'
+2023-02-06T06:54:07.314842-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `YR6EQST3'
+2023-02-06T06:54:07.315619-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `YTRB55TD'
+2023-02-06T06:54:07.316422-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `ZFTCZBKZ'
+2023-02-06T06:54:07.317196-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `0FYH4FT4'
+2023-02-06T06:54:07.317971-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `0TRT786E'
+2023-02-06T06:54:07.318730-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `12PNXAGA'
+2023-02-06T06:54:07.319532-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `1G4ZZ0F7'
+2023-02-06T06:54:07.320287-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `1YYK5MCR'
+2023-02-06T06:54:07.321079-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `2EEM9BQB'
+2023-02-06T06:54:07.321755-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `2PRX4REG'
+2023-02-06T06:54:07.322433-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `5WJXAD49'
+2023-02-06T06:54:07.323255-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `63TNHG0E'
+2023-02-06T06:54:07.323971-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `7B0S19JW'
+2023-02-06T06:54:07.324680-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `7WAPT39G'
+2023-02-06T06:54:07.325353-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `88WPRM1Z'
+2023-02-06T06:54:07.326068-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `8HMVB6B7'
+2023-02-06T06:54:07.326818-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `A8RQZBYE'
+2023-02-06T06:54:07.327511-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `AMAY71YW'
+2023-02-06T06:54:07.328186-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `BR2VMAT9'
+2023-02-06T06:54:07.328869-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `DXYZQ51H'
+2023-02-06T06:54:07.329548-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `E5APY8KR'
+2023-02-06T06:54:07.330223-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `F54GD3DS'
+2023-02-06T06:54:07.330981-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `H6TQJ0DC'
+2023-02-06T06:54:07.331689-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `HBES0SWA'
+2023-02-06T06:54:07.332392-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `HDJJMP7T'
+2023-02-06T06:54:07.333059-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `HSYKBRQJ'
+2023-02-06T06:54:07.333749-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `K86J12XC'
+2023-02-06T06:54:07.334452-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `KW4TC0EJ'
+2023-02-06T06:54:07.335320-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `MHAKYM6T'
+2023-02-06T06:54:07.336149-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `NWPW4F3V'
+2023-02-06T06:54:07.336972-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `NZPJ1P5G'
+2023-02-06T06:54:07.337806-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `PFPMC86R'
+2023-02-06T06:54:07.338699-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `PTMSPTWP'
+2023-02-06T06:54:07.339534-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `QA8ZYTB4'
+2023-02-06T06:54:07.340349-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `QZJP0SB3'
+2023-02-06T06:54:07.341162-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `RR4T104V'
+2023-02-06T06:54:07.341983-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `RSJHBBX2'
+2023-02-06T06:54:07.342879-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `RZ2RP3WS'
+2023-02-06T06:54:07.343669-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `TTJMTTCS'
+2023-02-06T06:54:07.344507-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `TY0SH6EB'
+2023-02-06T06:54:07.345328-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `VBPX34C6'
+2023-02-06T06:54:07.346158-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `W92KHPX5'
+2023-02-06T06:54:07.347138-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `WRYQCQ5X'
+2023-02-06T06:54:07.348075-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `XECR9799'
+2023-02-06T06:54:07.348972-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `XEPN2E8X'
+2023-02-06T06:54:07.349817-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `YP6VAGCV'
+2023-02-06T06:54:07.350581-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `YZAGCB82'
+2023-02-06T06:54:07.351430-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `Z7MH9J3T'
+2023-02-06T06:54:07.352251-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `007BNCAM'
+2023-02-06T06:54:07.353050-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `0GBFKW13'
+2023-02-06T06:54:07.353853-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `0XVDKAWB'
+2023-02-06T06:54:07.354607-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `1AQA6DC8'
+2023-02-06T06:54:07.355423-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `1RN5E3QN'
+2023-02-06T06:54:07.356166-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `28K59QGK'
+2023-02-06T06:54:07.356917-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `2BH54XA1'
+2023-02-06T06:54:07.357724-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `2H7BB7FK'
+2023-02-06T06:54:07.358558-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `3539JAW4'
+2023-02-06T06:54:07.359559-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `3KN5D78W'
+2023-02-06T06:54:07.360359-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `3X14C86W'
+2023-02-06T06:54:07.361088-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `4PXBJQY8'
+2023-02-06T06:54:07.361803-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `4XN9PNKR'
+2023-02-06T06:54:07.362609-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `4ZZ7G9N6'
+2023-02-06T06:54:07.363401-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `53QA373X'
+2023-02-06T06:54:07.364187-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `5V37TDTB'
+2023-02-06T06:54:07.364964-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `5VKB7EFK'
+2023-02-06T06:54:07.365677-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `6859740J'
+2023-02-06T06:54:07.366386-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `76BBEAAG'
+2023-02-06T06:54:07.367122-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `7WS9DSAH'
+2023-02-06T06:54:07.368029-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `8AQ52C84'
+2023-02-06T06:54:07.368796-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `94BDKMD5'
+2023-02-06T06:54:07.369528-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `A59AW3GR'
+2023-02-06T06:54:07.370244-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `AAF80G7X'
+2023-02-06T06:54:07.370994-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `B17D6ZWG'
+2023-02-06T06:54:07.371692-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `BN37MHK9'
+2023-02-06T06:54:07.372395-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `BPQBGH4B'
+2023-02-06T06:54:07.373091-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `C7Z3314D'
+2023-02-06T06:54:07.373827-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `CGN5SNNT'
+2023-02-06T06:54:07.374595-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `CH9BBSA7'
+2023-02-06T06:54:07.375417-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `CNVAHVQ8'
+2023-02-06T06:54:07.376233-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `CR9F8A5Y'
+2023-02-06T06:54:07.377049-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `D9S761XQ'
+2023-02-06T06:54:07.377800-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `DTH0FWXW'
+2023-02-06T06:54:07.378551-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `EHQ6EZ7W'
+2023-02-06T06:54:07.379342-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `ENK1KPFR'
+2023-02-06T06:54:07.380113-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `FFNE46TY'
+2023-02-06T06:54:07.380872-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `FXKDA2HN'
+2023-02-06T06:54:07.381627-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `GWH5FXY8'
+2023-02-06T06:54:07.382377-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `GZ7DHG00'
+2023-02-06T06:54:07.383084-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `H1VD95KD'
+2023-02-06T06:54:07.383898-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `HMF3WZQH'
+2023-02-06T06:54:07.384667-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `HWB4TQKH'
+2023-02-06T06:54:07.385417-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `K1VDMPFY'
+2023-02-06T06:54:07.386169-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `K4SCN7D1'
+2023-02-06T06:54:07.386973-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `KJ9BJF1T'
+2023-02-06T06:54:07.387772-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `N2XBHN5T'
+2023-02-06T06:54:07.388572-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `PGS5MG86'
+2023-02-06T06:54:07.389389-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `QRV8QY8E'
+2023-02-06T06:54:07.390146-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `R975QW94'
+2023-02-06T06:54:07.390902-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `S55ERBNB'
+2023-02-06T06:54:07.391676-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `SZ136PTK'
+2023-02-06T06:54:07.392481-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `T7V2KXRG'
+2023-02-06T06:54:07.393260-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `TC314QM7'
+2023-02-06T06:54:07.394032-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `TMQ7MM1H'
+2023-02-06T06:54:07.394830-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `V9H5F728'
+2023-02-06T06:54:07.395662-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `VFX1TMN2'
+2023-02-06T06:54:07.396433-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `WFX9H9HT'
+2023-02-06T06:54:07.397203-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `WF92WMTW'
+2023-02-06T06:54:07.397974-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `WR5FQ0QY'
+2023-02-06T06:54:07.398721-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `Y0HBH7H5'
+2023-02-06T06:54:07.399493-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `ZKS3GA8R'
+2023-02-06T06:54:07.400251-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `ZSS2DT9T'
+2023-02-06T06:54:07.401029-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `0V1J155P'
+2023-02-06T06:54:07.401818-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `1KSYB0C9'
+2023-02-06T06:54:07.402560-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `2B7WJMN4'
+2023-02-06T06:54:07.403325-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `2SNGAHBS'
+2023-02-06T06:54:07.404081-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `2RHZP74E'
+2023-02-06T06:54:07.404852-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `311JT7ZE'
+2023-02-06T06:54:07.405623-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `3J1V6PFN'
+2023-02-06T06:54:07.406358-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `41NJF3W6'
+2023-02-06T06:54:07.407124-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `4BXWSB5C'
+2023-02-06T06:54:07.407968-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `4FFK3TXV'
+2023-02-06T06:54:07.408806-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `4MDKJ2HR'
+2023-02-06T06:54:07.409589-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `5ANNEE5T'
+2023-02-06T06:54:07.410380-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `697YM7P3'
+2023-02-06T06:54:07.411243-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `6HBN8H0G'
+2023-02-06T06:54:07.412053-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `737M4S0T'
+2023-02-06T06:54:07.412829-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `7B5PV9PR'
+2023-02-06T06:54:07.413583-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `7A5JT5H1'
+2023-02-06T06:54:07.414381-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `7GFWDH97'
+2023-02-06T06:54:07.415264-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `7VZNQ980'
+2023-02-06T06:54:07.416072-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `7TQTDZAW'
+2023-02-06T06:54:07.416887-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `7Z9GZJHG'
+2023-02-06T06:54:07.417711-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `7ZBXCXAV'
+2023-02-06T06:54:07.418498-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `8PSX5S6K'
+2023-02-06T06:54:07.419372-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `97VHP8KB'
+2023-02-06T06:54:07.420318-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `9J5WBVZB'
+2023-02-06T06:54:07.421174-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `9TZS7556'
+2023-02-06T06:54:07.422018-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `9R5M73D9'
+2023-02-06T06:54:07.422839-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `B77HHFW1'
+2023-02-06T06:54:07.423731-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `CA1NNPR5'
+2023-02-06T06:54:07.424586-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `C9NP51QX'
+2023-02-06T06:54:07.425532-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `DAFMDF9C'
+2023-02-06T06:54:07.426333-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `E31W3FYA'
+2023-02-06T06:54:07.427153-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `E8ZXY9Q9'
+2023-02-06T06:54:07.427900-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `EDHTN1NH'
+2023-02-06T06:54:07.428668-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `FDBQRXQD'
+2023-02-06T06:54:07.429438-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `FQBX2DCV'
+2023-02-06T06:54:07.430179-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `FWSVTHZ4'
+2023-02-06T06:54:07.430942-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `FZ5KF8NN'
+2023-02-06T06:54:07.431862-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `GP1MHMVS'
+2023-02-06T06:54:07.432615-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `GP9KCRWB'
+2023-02-06T06:54:07.433322-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `GZ1VPSYP'
+2023-02-06T06:54:07.434054-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `GYBNYWFB'
+2023-02-06T06:54:07.434787-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `HSVN3F5C'
+2023-02-06T06:54:07.435501-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `JANG83D7'
+2023-02-06T06:54:07.436208-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `JNXY0FM2'
+2023-02-06T06:54:07.436894-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `K4ZWQB1Y'
+2023-02-06T06:54:07.437579-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `N2NH55PR'
+2023-02-06T06:54:07.438290-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `NJQTSXN1'
+2023-02-06T06:54:07.439022-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `NGBS6GSE'
+2023-02-06T06:54:07.439729-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `NP3QNAD4'
+2023-02-06T06:54:07.440429-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `PGSH1QXY'
+2023-02-06T06:54:07.441122-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `PTSYQFTK'
+2023-02-06T06:54:07.441816-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `Q1XSG2YJ'
+2023-02-06T06:54:07.442573-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `RZKPJBWE'
+2023-02-06T06:54:07.443270-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `SE1HK52M'
+2023-02-06T06:54:07.443985-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `T3QZ9QD1'
+2023-02-06T06:54:07.444681-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `T25JMQVF'
+2023-02-06T06:54:07.445370-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `VFQTPR80'
+2023-02-06T06:54:07.446104-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `VZBYY7WX'
+2023-02-06T06:54:07.446846-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `WPVQS3YD'
+2023-02-06T06:54:07.447589-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for denomination `ZMHRYQX8'
+2023-02-06T06:54:07.449144-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for signing key `R6J1SSEN'
+2023-02-06T06:54:07.449899-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for signing key `BVHY1YY7'
+2023-02-06T06:54:07.450729-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for signing key `BQSE5CAN'
+2023-02-06T06:54:07.451526-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for signing key `HY5C7XPC'
+2023-02-06T06:54:07.452314-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Added offline 
signature for signing key `TQF9JT6Y'
+2023-02-06T06:54:07.467062-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Executing command 
`NOTIFY XRE2709K6TYDBVARD9Y5SCZY7VHE4D5DKF0R8DHQ4X5T13E8X2X60, '''
+2023-02-06T06:54:07.467349-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO PG poll job active
+2023-02-06T06:54:07.467404-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Received 
notification xre2709k6tydbvard9y5sczy7vhe4d5dkf0r8dhq4x5t13e8x2x60 with extra 
data `'
+2023-02-06T06:54:07.467434-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Received /wire 
update event
+2023-02-06T06:54:07.467456-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Received /keys 
update event
+2023-02-06T06:54:07.467481-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:07.467661-0500 
taler-exchange-httpd-9377(BPWS6YJFAVN6SWJ46MZ5CQM698) INFO Request for 
`/management/keys' completed (0)
+2023-02-06T06:54:07.467710-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T06:54:07.468156-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Loading global fees 
from DB: 0
+2023-02-06T06:54:07.469578-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `offline-sign-fees'
+2023-02-06T06:54:07.481478-0500 taler-exchange-offline-9422 INFO Using master 
public key HGYF3P1M
+2023-02-06T06:54:07.536700-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jan 31 00:13:37 2024
+2023-02-06T06:54:07.537081-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.537129-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.537518-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.537562-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.537904-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.538192-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.538353-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jan 24 00:18:37 2024
+2023-02-06T06:54:07.538737-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.538783-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.539180-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.539224-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.539658-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.539994-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.540155-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jan 17 00:23:37 2024
+2023-02-06T06:54:07.540473-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.540517-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.540886-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.540924-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.541421-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.541817-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.541974-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jan 10 00:28:37 2024
+2023-02-06T06:54:07.542280-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.542316-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.542623-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.542661-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.543271-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.543753-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.543912-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jan 03 00:33:37 2024
+2023-02-06T06:54:07.544209-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.544253-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.544598-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.544651-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.545320-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.545889-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.546048-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Dec 27 00:38:37 2023
+2023-02-06T06:54:07.546351-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.546387-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.546800-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.546867-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.547640-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.548299-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.548461-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Dec 20 00:43:37 2023
+2023-02-06T06:54:07.548773-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.548816-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.549172-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.549216-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.550043-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.550793-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.550955-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Dec 13 00:48:37 2023
+2023-02-06T06:54:07.551294-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.551338-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.551737-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.551781-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.552742-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.553562-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.553724-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Dec 06 00:53:37 2023
+2023-02-06T06:54:07.554003-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.554047-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.554377-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.554415-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.555425-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.556319-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.556481-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Nov 29 00:58:37 2023
+2023-02-06T06:54:07.556823-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.556877-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.557327-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.557376-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.558538-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.559521-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.559684-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Nov 22 01:03:37 2023
+2023-02-06T06:54:07.560001-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.560047-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.560455-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.560497-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.561698-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.562759-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.562925-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Nov 15 01:08:37 2023
+2023-02-06T06:54:07.563229-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.563282-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.563660-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.563701-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.565008-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.566117-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.566279-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Nov 08 01:13:37 2023
+2023-02-06T06:54:07.566602-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.566647-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.567053-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.567096-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.568460-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.569674-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.569836-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Nov 01 02:18:37 2023
+2023-02-06T06:54:07.570108-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.570152-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.570498-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.570542-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.571967-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.573270-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.573434-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Oct 25 02:23:37 2023
+2023-02-06T06:54:07.573766-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.573810-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.574209-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.574254-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.575812-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.577178-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.577341-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Oct 18 02:28:37 2023
+2023-02-06T06:54:07.577645-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.577688-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.578114-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.578157-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.579772-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.581239-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.581403-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Oct 11 02:33:37 2023
+2023-02-06T06:54:07.581723-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.581797-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.582245-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.582312-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.584042-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.585557-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.585720-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Oct 04 02:38:37 2023
+2023-02-06T06:54:07.586024-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.586067-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.586428-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.586473-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.588238-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.589857-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.590019-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Sep 27 02:43:37 2023
+2023-02-06T06:54:07.590335-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.590390-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.590754-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.590800-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.592684-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.594324-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.594519-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Sep 20 02:48:37 2023
+2023-02-06T06:54:07.594787-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.594830-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.595230-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.595274-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.597242-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.598988-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.599153-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Sep 13 02:53:37 2023
+2023-02-06T06:54:07.599491-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.599535-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.599953-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.599996-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.602053-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.603931-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.604097-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Sep 06 02:58:37 2023
+2023-02-06T06:54:07.604432-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.604477-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.604861-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.604905-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.607067-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.609207-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.609371-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Aug 30 03:03:37 2023
+2023-02-06T06:54:07.609702-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.609756-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.610184-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.610232-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.612487-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.614792-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.614969-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Aug 23 03:08:37 2023
+2023-02-06T06:54:07.615259-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.615302-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.615676-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.615720-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.618019-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.620434-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.620599-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Aug 16 03:13:37 2023
+2023-02-06T06:54:07.620907-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.620951-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.621333-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.621377-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.623760-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.626148-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.626309-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Aug 09 03:18:37 2023
+2023-02-06T06:54:07.626650-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.626696-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.627100-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.627143-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.629624-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.632111-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.632278-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Aug 02 03:23:37 2023
+2023-02-06T06:54:07.632582-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.632626-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.633039-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.633083-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.635681-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.638229-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.638393-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jul 26 03:28:37 2023
+2023-02-06T06:54:07.638700-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.638745-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.639170-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.639226-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.641703-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.644151-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.644307-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jul 19 03:33:37 2023
+2023-02-06T06:54:07.644639-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.644693-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.645140-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.645189-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.647802-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.650297-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.650448-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jul 12 03:38:37 2023
+2023-02-06T06:54:07.650764-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.650807-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.651217-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.651261-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.653885-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.656492-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.656648-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jul 05 03:43:37 2023
+2023-02-06T06:54:07.656957-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.657001-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.657395-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.657438-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.660132-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.662823-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.662968-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jun 28 03:48:37 2023
+2023-02-06T06:54:07.663305-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.663349-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.663740-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.663784-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.666376-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.668912-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.669059-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jun 21 03:53:37 2023
+2023-02-06T06:54:07.669370-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.669413-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.669777-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.669814-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.673665-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.677401-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.677622-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jun 14 03:58:37 2023
+2023-02-06T06:54:07.677987-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.678031-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.678285-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.678323-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.682742-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.685793-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.685933-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Jun 07 04:03:37 2023
+2023-02-06T06:54:07.686243-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.686319-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.686703-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.686774-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.689500-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.692300-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.692439-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed May 31 04:08:37 2023
+2023-02-06T06:54:07.692766-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.692810-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.693160-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.693203-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.695904-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.698747-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.698883-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed May 24 04:13:37 2023
+2023-02-06T06:54:07.699187-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.699230-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.699604-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.699648-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.702423-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.705375-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.705513-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed May 17 04:18:37 2023
+2023-02-06T06:54:07.705822-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.705866-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.706152-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.706189-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.708835-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.712795-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.712992-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed May 10 04:23:37 2023
+2023-02-06T06:54:07.713303-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.713347-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.713601-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.713639-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.718320-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.721772-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.721905-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed May 03 04:28:37 2023
+2023-02-06T06:54:07.722226-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.722295-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.722728-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.722795-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.725582-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.728336-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.728458-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Apr 26 04:33:37 2023
+2023-02-06T06:54:07.728807-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.728850-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.729269-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.729313-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.732131-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.734984-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.735107-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Apr 19 04:38:37 2023
+2023-02-06T06:54:07.735439-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.735482-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.735916-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.735960-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.738796-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.741593-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.741714-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Apr 12 04:43:37 2023
+2023-02-06T06:54:07.742079-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.742123-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.742483-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.742521-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.745193-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.749091-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.749270-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Apr 05 04:48:37 2023
+2023-02-06T06:54:07.749487-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.749530-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.749786-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.749825-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.754549-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.757742-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.757861-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Mar 29 04:53:37 2023
+2023-02-06T06:54:07.758154-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.758204-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.758596-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.758643-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.761426-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.764118-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.764230-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Mar 22 04:58:37 2023
+2023-02-06T06:54:07.764580-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.764623-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.765018-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.765062-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.767922-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.770782-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.770902-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Mar 15 05:03:37 2023
+2023-02-06T06:54:07.771249-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.771293-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.771694-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.771737-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.774636-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.777558-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.777667-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Mar 08 04:08:37 2023
+2023-02-06T06:54:07.777989-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.778032-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.778406-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.778449-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.781209-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.785154-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.785314-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Mar 01 04:13:37 2023
+2023-02-06T06:54:07.785613-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.785656-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.785910-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.785947-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.790672-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.793474-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.793580-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Feb 22 04:18:37 2023
+2023-02-06T06:54:07.793847-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.793901-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.794312-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.794363-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.797098-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.799720-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.799842-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Feb 15 04:23:37 2023
+2023-02-06T06:54:07.800152-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.800195-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.800546-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.800603-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.803380-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.806181-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.806281-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Feb 08 04:28:37 2023
+2023-02-06T06:54:07.806469-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.806524-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.806766-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.806800-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.809669-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.812370-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.812489-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Creating /keys at 
cherry pick date Wed Feb 01 04:33:37 2023
+2023-02-06T06:54:07.812786-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.812829-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.813186-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:07.813230-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:07.818585-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.826467-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Setting /keys 
'Expires' header to 'Mon, 13 Feb 2023 11:54:07 GMT'
+2023-02-06T06:54:07.827233-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Filtering /keys by 
cherry pick date Wed Dec 31 19:00:00 1969 found entry 2356071390/53
+2023-02-06T06:54:07.827271-0500 
taler-exchange-httpd-9377(XX504PR54DWMC8YGR5WS1WAFPC) INFO Handling request 
(GET) for URL '/keys'
+2023-02-06T06:54:07.827298-0500 
taler-exchange-httpd-9377(XX504PR54DWMC8YGR5WS1WAFPC) INFO Filtering /keys by 
cherry pick date Wed Dec 31 19:00:00 1969 found entry 2356071390/53
+2023-02-06T06:54:07.828003-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Request for `/keys' 
completed (0)
+2023-02-06T06:54:07.828041-0500 
taler-exchange-httpd-9377(N4E5EVCF6G72F0301ZAKHXZ3GR) INFO Request for `/keys' 
took 1112 ms
+2023-02-06T06:54:07.828080-0500 
taler-exchange-httpd-9377(XX504PR54DWMC8YGR5WS1WAFPC) INFO Request for `/keys' 
completed (0)
+2023-02-06T06:54:07.828107-0500 
taler-exchange-httpd-9377(XX504PR54DWMC8YGR5WS1WAFPC) INFO Request for `/keys' 
took 893 ms
+2023-02-06T06:54:07.828147-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:07.828231-0500 
taler-exchange-httpd-9377(F1WV4EMCZGFGRY7HVGEXN32PDG) INFO Handling request 
(POST) for URL '/management/wire-fee'
+2023-02-06T06:54:07.828263-0500 
taler-exchange-httpd-9377(F1WV4EMCZGFGRY7HVGEXN32PDG) INFO Handling request 
(POST) for URL '/management/wire-fee'
+2023-02-06T06:54:07.828288-0500 
taler-exchange-httpd-9377(F1WV4EMCZGFGRY7HVGEXN32PDG) INFO Handling request 
(POST) for URL '/management/wire-fee'
+2023-02-06T06:54:07.828588-0500 
taler-exchange-httpd-9377(F1WV4EMCZGFGRY7HVGEXN32PDG) INFO Starting transaction 
`add wire fee'
+2023-02-06T06:54:07.833511-0500 
taler-exchange-httpd-9377(F1WV4EMCZGFGRY7HVGEXN32PDG) INFO Executing command 
`NOTIFY XAA6QKJBC4S2DFWADVSRJBSD0683ZVFMHRRXZEXRP9773Q0X17750, '''
+2023-02-06T06:54:07.833777-0500 
taler-exchange-httpd-9377(F1WV4EMCZGFGRY7HVGEXN32PDG) INFO PG poll job active
+2023-02-06T06:54:07.833838-0500 
taler-exchange-httpd-9377(F1WV4EMCZGFGRY7HVGEXN32PDG) INFO PG poll job finishes 
after 0 events
+2023-02-06T06:54:07.833927-0500 
taler-exchange-httpd-9377(F1WV4EMCZGFGRY7HVGEXN32PDG) INFO Request for 
`/management/wire-fee' completed (0)
+2023-02-06T06:54:07.841192-0500 taler-merchant-httpd-9368 INFO Received keys 
from URL `http://localhost:8081/keys' with status 200 and expiration Mon Feb 13 
11:54:07 2023.
+2023-02-06T06:54:07.843041-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received keys from URL `http://localhost:8081/keys' with status 200 and 
expiration Mon Feb 13 11:54:07 2023.
+2023-02-06T06:54:07.893508-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Successfully downloaded exchange's keys
+2023-02-06T06:54:07.893585-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Connecting to auditor at URL `http://the.auditor/'.
+2023-02-06T06:54:07.894265-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:07.894953-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `refetch /keys'
+2023-02-06T06:54:07.894987-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO cmd 
`refetch /keys' (ip: 4), key generation: 1
+2023-02-06T06:54:07.895017-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `orders-id'
+2023-02-06T06:54:07.895034-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: instance-create-default
+2023-02-06T06:54:07.896442-0500 taler-merchant-httpd-9368 INFO Successfully 
downloaded exchange's keys
+2023-02-06T06:54:07.896501-0500 taler-merchant-httpd-9368 INFO Connecting to 
auditor at URL `http://the.auditor/'.
+2023-02-06T06:54:07.915234-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:07.946360-0500 
taler-merchant-httpd-9368(404RE9D6F66QEGMTYF6PDWXWG0) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T06:54:07.946972-0500 
taler-merchant-httpd-9368(404RE9D6F66QEGMTYF6PDWXWG0) INFO Starting merchant DB 
transaction `post /instances'
+2023-02-06T06:54:07.950328-0500 
taler-merchant-httpd-9368(404RE9D6F66QEGMTYF6PDWXWG0) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T06:54:07.955699-0500 
taler-merchant-httpd-9368(404RE9D6F66QEGMTYF6PDWXWG0) INFO Generating instance 
settings notification: reload `default'
+2023-02-06T06:54:07.955768-0500 
taler-merchant-httpd-9368(404RE9D6F66QEGMTYF6PDWXWG0) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'CHJPCRBNDHT00''
+2023-02-06T06:54:07.955994-0500 
taler-merchant-httpd-9368(404RE9D6F66QEGMTYF6PDWXWG0) INFO PG poll job active
+2023-02-06T06:54:07.956060-0500 
taler-merchant-httpd-9368(404RE9D6F66QEGMTYF6PDWXWG0) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `default'
+2023-02-06T06:54:07.956103-0500 
taler-merchant-httpd-9368(404RE9D6F66QEGMTYF6PDWXWG0) INFO Received instance 
settings notification: reload `default'
+2023-02-06T06:54:07.957161-0500 
taler-merchant-httpd-9368(404RE9D6F66QEGMTYF6PDWXWG0) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:07.957300-0500 
taler-merchant-httpd-9368(404RE9D6F66QEGMTYF6PDWXWG0) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T06:54:07.957364-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/management/instances completed with response code 204
+2023-02-06T06:54:07.957378-0500 taler-merchant-httpd-9368 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:07.957455-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `orders-id'
+2023-02-06T06:54:07.957485-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: instance-create-kyc-0
+2023-02-06T06:54:07.957839-0500 
taler-merchant-httpd-9368(KGTA5AEBH0FPX1B22AJJX2TP98) INFO Handling request 
(GET) for URL '/private/kyc'
+2023-02-06T06:54:07.959082-0500 
taler-merchant-httpd-9368(KGTA5AEBH0FPX1B22AJJX2TP98) INFO Finished handling 
request for `/private/kyc' with MHD termination code 0
+2023-02-06T06:54:07.959193-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `orders-id'
+2023-02-06T06:54:07.959237-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: create-proposal-4
+2023-02-06T06:54:07.959758-0500 
taler-merchant-httpd-9368(90ZR6V4BQQF2ATKK6VHY07ZNP0) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T06:54:07.962730-0500 
taler-merchant-httpd-9368(90ZR6V4BQQF2ATKK6VHY07ZNP0) INFO Starting merchant DB 
transaction `insert_order'
+2023-02-06T06:54:07.964734-0500 
taler-merchant-httpd-9368(90ZR6V4BQQF2ATKK6VHY07ZNP0) INFO Notifying clients of 
new order 1 at JG7D1Z6Z
+2023-02-06T06:54:07.964787-0500 
taler-merchant-httpd-9368(90ZR6V4BQQF2ATKK6VHY07ZNP0) INFO Executing command 
`NOTIFY X77HJ2XWM1Q6W3MQH65X0F8YGKAFBZABJGP6C614C0N8K98WN9RKG, 
'0000000000002005YG3B0E0NR0000000''
+2023-02-06T06:54:07.965005-0500 
taler-merchant-httpd-9368(90ZR6V4BQQF2ATKK6VHY07ZNP0) INFO PG poll job active
+2023-02-06T06:54:07.965061-0500 
taler-merchant-httpd-9368(90ZR6V4BQQF2ATKK6VHY07ZNP0) INFO PG poll job finishes 
after 0 events
+2023-02-06T06:54:07.965099-0500 
taler-merchant-httpd-9368(90ZR6V4BQQF2ATKK6VHY07ZNP0) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T06:54:07.967095-0500 
taler-merchant-httpd-9368(90ZR6V4BQQF2ATKK6VHY07ZNP0) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T06:54:07.967293-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `orders-id'
+2023-02-06T06:54:07.967335-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: get-order-4
+2023-02-06T06:54:07.967419-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Getting order status from http://localhost:8080/private/orders/4?transfer=YES
+2023-02-06T06:54:07.967724-0500 
taler-merchant-httpd-9368(TK9Y02DB60K8YVAHJRTJK519C0) INFO Handling request 
(GET) for URL '/private/orders/4'
+2023-02-06T06:54:07.968822-0500 
taler-merchant-httpd-9368(TK9Y02DB60K8YVAHJRTJK519C0) INFO Finished handling 
request for `/private/orders/4' with MHD termination code 0
+2023-02-06T06:54:07.969031-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO GET 
/private/orders/$ID completed with status 200
+2023-02-06T06:54:07.969134-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `orders-id'
+2023-02-06T06:54:07.969171-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: delete-order-4
+2023-02-06T06:54:07.969541-0500 
taler-merchant-httpd-9368(YTPGMN1VKY6CP025NM8YBBQVN4) INFO Handling request 
(DELETE) for URL '/private/orders/4'
+2023-02-06T06:54:07.978137-0500 
taler-merchant-httpd-9368(YTPGMN1VKY6CP025NM8YBBQVN4) INFO Finished handling 
request for `/private/orders/4' with MHD termination code 0
+2023-02-06T06:54:07.978238-0500 taler-merchant-httpd-9368 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:07.978261-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `orders-id'
+2023-02-06T06:54:07.978303-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: purge-default
+2023-02-06T06:54:07.978630-0500 
taler-merchant-httpd-9368(1Z80MQRNFRSAZMQGHZJHHDC35C) INFO Handling request 
(DELETE) for URL '/management/instances/default'
+2023-02-06T06:54:07.989172-0500 
taler-merchant-httpd-9368(1Z80MQRNFRSAZMQGHZJHHDC35C) INFO Generating instance 
settings notification: reload `default'
+2023-02-06T06:54:07.989244-0500 
taler-merchant-httpd-9368(1Z80MQRNFRSAZMQGHZJHHDC35C) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'CHJPCRBNDHT00''
+2023-02-06T06:54:07.989458-0500 
taler-merchant-httpd-9368(1Z80MQRNFRSAZMQGHZJHHDC35C) INFO PG poll job active
+2023-02-06T06:54:07.989508-0500 
taler-merchant-httpd-9368(1Z80MQRNFRSAZMQGHZJHHDC35C) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `default'
+2023-02-06T06:54:07.989541-0500 
taler-merchant-httpd-9368(1Z80MQRNFRSAZMQGHZJHHDC35C) INFO Received instance 
settings notification: reload `default'
+2023-02-06T06:54:07.989861-0500 
taler-merchant-httpd-9368(1Z80MQRNFRSAZMQGHZJHHDC35C) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:07.989953-0500 
taler-merchant-httpd-9368(1Z80MQRNFRSAZMQGHZJHHDC35C) INFO Finished handling 
request for `/management/instances/default' with MHD termination code 0
+2023-02-06T06:54:07.990061-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `orders-id'
+2023-02-06T06:54:07.990102-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Exiting from batch: orders-id
+2023-02-06T06:54:07.990149-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `config'
+2023-02-06T06:54:07.990520-0500 
taler-merchant-httpd-9368(Q3KT6ZG3GT932V0VJTDQA7DWJC) INFO Handling request 
(GET) for URL '/config'
+2023-02-06T06:54:07.990628-0500 
taler-merchant-httpd-9368(Q3KT6ZG3GT932V0VJTDQA7DWJC) INFO Finished handling 
request for `/config' with MHD termination code 0
+2023-02-06T06:54:07.990767-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instances-empty'
+2023-02-06T06:54:07.991137-0500 
taler-merchant-httpd-9368(W4SCZ0CYJDFCS6R9RT7217ZEZR) INFO Handling request 
(GET) for URL '/management/instances'
+2023-02-06T06:54:07.991274-0500 
taler-merchant-httpd-9368(W4SCZ0CYJDFCS6R9RT7217ZEZR) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T06:54:07.991388-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-create-default-setup'
+2023-02-06T06:54:07.991828-0500 
taler-merchant-httpd-9368(4QTX1VDVYWVTZZMTHF8AWAM2AR) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T06:54:07.992192-0500 
taler-merchant-httpd-9368(4QTX1VDVYWVTZZMTHF8AWAM2AR) INFO Starting merchant DB 
transaction `post /instances'
+2023-02-06T06:54:07.993496-0500 
taler-merchant-httpd-9368(4QTX1VDVYWVTZZMTHF8AWAM2AR) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T06:54:08.000309-0500 
taler-merchant-httpd-9368(4QTX1VDVYWVTZZMTHF8AWAM2AR) INFO Generating instance 
settings notification: reload `default'
+2023-02-06T06:54:08.000366-0500 
taler-merchant-httpd-9368(4QTX1VDVYWVTZZMTHF8AWAM2AR) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'CHJPCRBNDHT00''
+2023-02-06T06:54:08.000532-0500 
taler-merchant-httpd-9368(4QTX1VDVYWVTZZMTHF8AWAM2AR) INFO PG poll job active
+2023-02-06T06:54:08.000583-0500 
taler-merchant-httpd-9368(4QTX1VDVYWVTZZMTHF8AWAM2AR) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `default'
+2023-02-06T06:54:08.000618-0500 
taler-merchant-httpd-9368(4QTX1VDVYWVTZZMTHF8AWAM2AR) INFO Received instance 
settings notification: reload `default'
+2023-02-06T06:54:08.001604-0500 
taler-merchant-httpd-9368(4QTX1VDVYWVTZZMTHF8AWAM2AR) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.001705-0500 
taler-merchant-httpd-9368(4QTX1VDVYWVTZZMTHF8AWAM2AR) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T06:54:08.001799-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/management/instances completed with response code 204
+2023-02-06T06:54:08.001867-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-create-i1'
+2023-02-06T06:54:08.002332-0500 
taler-merchant-httpd-9368(ZR9NYA93HC8MTKNDVGNM5JKJ48) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T06:54:08.002705-0500 
taler-merchant-httpd-9368(ZR9NYA93HC8MTKNDVGNM5JKJ48) INFO Starting merchant DB 
transaction `post /instances'
+2023-02-06T06:54:08.004035-0500 
taler-merchant-httpd-9368(ZR9NYA93HC8MTKNDVGNM5JKJ48) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T06:54:08.011440-0500 
taler-merchant-httpd-9368(ZR9NYA93HC8MTKNDVGNM5JKJ48) INFO Generating instance 
settings notification: reload `i1'
+2023-02-06T06:54:08.011495-0500 
taler-merchant-httpd-9368(ZR9NYA93HC8MTKNDVGNM5JKJ48) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RG0''
+2023-02-06T06:54:08.011712-0500 
taler-merchant-httpd-9368(ZR9NYA93HC8MTKNDVGNM5JKJ48) INFO PG poll job active
+2023-02-06T06:54:08.011774-0500 
taler-merchant-httpd-9368(ZR9NYA93HC8MTKNDVGNM5JKJ48) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1'
+2023-02-06T06:54:08.011811-0500 
taler-merchant-httpd-9368(ZR9NYA93HC8MTKNDVGNM5JKJ48) INFO Received instance 
settings notification: reload `i1'
+2023-02-06T06:54:08.012608-0500 
taler-merchant-httpd-9368(ZR9NYA93HC8MTKNDVGNM5JKJ48) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.012700-0500 
taler-merchant-httpd-9368(ZR9NYA93HC8MTKNDVGNM5JKJ48) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T06:54:08.012771-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/management/instances completed with response code 204
+2023-02-06T06:54:08.012838-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instances-get-i1'
+2023-02-06T06:54:08.013146-0500 
taler-merchant-httpd-9368(6867R95MS2DZ69A337Z15V06E8) INFO Handling request 
(GET) for URL '/management/instances'
+2023-02-06T06:54:08.013349-0500 
taler-merchant-httpd-9368(6867R95MS2DZ69A337Z15V06E8) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T06:54:08.013552-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instances-get-i1'
+2023-02-06T06:54:08.013886-0500 
taler-merchant-httpd-9368(K164BYCR3ANPG3DBT4DNSH2404) INFO Handling request 
(GET) for URL '/instances/i1/private'
+2023-02-06T06:54:08.014141-0500 
taler-merchant-httpd-9368(K164BYCR3ANPG3DBT4DNSH2404) INFO Finished handling 
request for `/instances/i1/private' with MHD termination code 0
+2023-02-06T06:54:08.014368-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-patch-i1-bad-currency'
+2023-02-06T06:54:08.014809-0500 
taler-merchant-httpd-9368(PKNE4CHQZM04EXKGVRX1XJ616C) INFO Handling request 
(PATCH) for URL '/management/instances/i1'
+2023-02-06T06:54:08.014925-0500 
taler-merchant-httpd-9368(PKNE4CHQZM04EXKGVRX1XJ616C) WARNING External protocol 
violation detected at json_helper.c:112.
+2023-02-06T06:54:08.014976-0500 
taler-merchant-httpd-9368(PKNE4CHQZM04EXKGVRX1XJ616C) WARNING Expected currency 
`EUR', but amount used currency `USD' in field `default_max_wire_fee'
+2023-02-06T06:54:08.015149-0500 
taler-merchant-httpd-9368(PKNE4CHQZM04EXKGVRX1XJ616C) INFO Finished handling 
request for `/management/instances/i1' with MHD termination code 0
+2023-02-06T06:54:08.015281-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO PATCH 
/instances/$ID completed with response code 400
+2023-02-06T06:54:08.015346-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-patch-i1'
+2023-02-06T06:54:08.015724-0500 
taler-merchant-httpd-9368(RYPSV3NNK0X0G4H9P7YVD8NQ5C) INFO Handling request 
(PATCH) for URL '/management/instances/i1'
+2023-02-06T06:54:08.015876-0500 
taler-merchant-httpd-9368(RYPSV3NNK0X0G4H9P7YVD8NQ5C) INFO Starting merchant DB 
transaction `PATCH /instances'
+2023-02-06T06:54:08.016497-0500 
taler-merchant-httpd-9368(RYPSV3NNK0X0G4H9P7YVD8NQ5C) INFO Adding NEW account 
`payto://iban/CH9300762011623852957?receiver-name=Test'
+2023-02-06T06:54:08.017088-0500 
taler-merchant-httpd-9368(RYPSV3NNK0X0G4H9P7YVD8NQ5C) INFO Committing merchant 
DB transaction PATCH /instances
+2023-02-06T06:54:08.022559-0500 
taler-merchant-httpd-9368(RYPSV3NNK0X0G4H9P7YVD8NQ5C) INFO Generating instance 
settings notification: reload `i1'
+2023-02-06T06:54:08.022613-0500 
taler-merchant-httpd-9368(RYPSV3NNK0X0G4H9P7YVD8NQ5C) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RG0''
+2023-02-06T06:54:08.022813-0500 
taler-merchant-httpd-9368(RYPSV3NNK0X0G4H9P7YVD8NQ5C) INFO PG poll job active
+2023-02-06T06:54:08.022880-0500 
taler-merchant-httpd-9368(RYPSV3NNK0X0G4H9P7YVD8NQ5C) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1'
+2023-02-06T06:54:08.022919-0500 
taler-merchant-httpd-9368(RYPSV3NNK0X0G4H9P7YVD8NQ5C) INFO Received instance 
settings notification: reload `i1'
+2023-02-06T06:54:08.023729-0500 
taler-merchant-httpd-9368(RYPSV3NNK0X0G4H9P7YVD8NQ5C) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.023824-0500 
taler-merchant-httpd-9368(RYPSV3NNK0X0G4H9P7YVD8NQ5C) INFO Finished handling 
request for `/management/instances/i1' with MHD termination code 0
+2023-02-06T06:54:08.023931-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO PATCH 
/instances/$ID completed with response code 204
+2023-02-06T06:54:08.023990-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instances-get-i1-2'
+2023-02-06T06:54:08.024275-0500 
taler-merchant-httpd-9368(YNJWX5YCX486QFK8ZZ8857ABH0) INFO Handling request 
(GET) for URL '/instances/i1/private'
+2023-02-06T06:54:08.024546-0500 
taler-merchant-httpd-9368(YNJWX5YCX486QFK8ZZ8857ABH0) INFO Finished handling 
request for `/instances/i1/private' with MHD termination code 0
+2023-02-06T06:54:08.024758-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-patch-i1-inactivate-account'
+2023-02-06T06:54:08.025129-0500 
taler-merchant-httpd-9368(FKA34F1ZG11T6VWWHVJ0W21EGC) INFO Handling request 
(PATCH) for URL '/management/instances/i1'
+2023-02-06T06:54:08.025239-0500 
taler-merchant-httpd-9368(FKA34F1ZG11T6VWWHVJ0W21EGC) INFO Starting merchant DB 
transaction `PATCH /instances'
+2023-02-06T06:54:08.025490-0500 
taler-merchant-httpd-9368(FKA34F1ZG11T6VWWHVJ0W21EGC) INFO Existing account 
`payto://iban/CH9300762011623852957?receiver-name=Test' not found, inactivating 
it.
+2023-02-06T06:54:08.026034-0500 
taler-merchant-httpd-9368(FKA34F1ZG11T6VWWHVJ0W21EGC) INFO Committing merchant 
DB transaction PATCH /instances
+2023-02-06T06:54:08.033580-0500 
taler-merchant-httpd-9368(FKA34F1ZG11T6VWWHVJ0W21EGC) INFO Generating instance 
settings notification: reload `i1'
+2023-02-06T06:54:08.033644-0500 
taler-merchant-httpd-9368(FKA34F1ZG11T6VWWHVJ0W21EGC) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RG0''
+2023-02-06T06:54:08.033880-0500 
taler-merchant-httpd-9368(FKA34F1ZG11T6VWWHVJ0W21EGC) INFO PG poll job active
+2023-02-06T06:54:08.033938-0500 
taler-merchant-httpd-9368(FKA34F1ZG11T6VWWHVJ0W21EGC) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1'
+2023-02-06T06:54:08.033977-0500 
taler-merchant-httpd-9368(FKA34F1ZG11T6VWWHVJ0W21EGC) INFO Received instance 
settings notification: reload `i1'
+2023-02-06T06:54:08.034903-0500 
taler-merchant-httpd-9368(FKA34F1ZG11T6VWWHVJ0W21EGC) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.035019-0500 
taler-merchant-httpd-9368(FKA34F1ZG11T6VWWHVJ0W21EGC) INFO Finished handling 
request for `/management/instances/i1' with MHD termination code 0
+2023-02-06T06:54:08.035122-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO PATCH 
/instances/$ID completed with response code 204
+2023-02-06T06:54:08.035183-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instances-get-i1-3'
+2023-02-06T06:54:08.035502-0500 
taler-merchant-httpd-9368(EAY5HGXVTRD64RYCRSFJHVRNRM) INFO Handling request 
(GET) for URL '/instances/i1/private'
+2023-02-06T06:54:08.035859-0500 
taler-merchant-httpd-9368(EAY5HGXVTRD64RYCRSFJHVRNRM) INFO Finished handling 
request for `/instances/i1/private' with MHD termination code 0
+2023-02-06T06:54:08.036069-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instances-get-i2-nx'
+2023-02-06T06:54:08.036383-0500 
taler-merchant-httpd-9368(HYZFWSVYN6CQEG6QK3DEE42JR8) INFO Handling request 
(GET) for URL '/instances/i2/private'
+2023-02-06T06:54:08.036439-0500 
taler-merchant-httpd-9368(HYZFWSVYN6CQEG6QK3DEE42JR8) WARNING Instance `(null)' 
not known
+2023-02-06T06:54:08.036607-0500 
taler-merchant-httpd-9368(HYZFWSVYN6CQEG6QK3DEE42JR8) INFO Finished handling 
request for `/instances/i2/private' with MHD termination code 0
+2023-02-06T06:54:08.036721-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 WARNING 
Attempt to lookup command for empty label
+2023-02-06T06:54:08.036773-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-create-bad-currency'
+2023-02-06T06:54:08.037193-0500 
taler-merchant-httpd-9368(PRMSEX2H91R11C0J4K6P5RTY7G) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T06:54:08.037329-0500 
taler-merchant-httpd-9368(PRMSEX2H91R11C0J4K6P5RTY7G) WARNING External protocol 
violation detected at json_helper.c:112.
+2023-02-06T06:54:08.037377-0500 
taler-merchant-httpd-9368(PRMSEX2H91R11C0J4K6P5RTY7G) WARNING Expected currency 
`EUR', but amount used currency `USD' in field `default_max_wire_fee'
+2023-02-06T06:54:08.037554-0500 
taler-merchant-httpd-9368(PRMSEX2H91R11C0J4K6P5RTY7G) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T06:54:08.037680-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/management/instances completed with response code 400
+2023-02-06T06:54:08.037739-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-create-ACL'
+2023-02-06T06:54:08.038126-0500 
taler-merchant-httpd-9368(5K9SRXV0M43913F98EKE6AMRCR) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T06:54:08.038570-0500 
taler-merchant-httpd-9368(5K9SRXV0M43913F98EKE6AMRCR) INFO Starting merchant DB 
transaction `post /instances'
+2023-02-06T06:54:08.039563-0500 
taler-merchant-httpd-9368(5K9SRXV0M43913F98EKE6AMRCR) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T06:54:08.044695-0500 
taler-merchant-httpd-9368(5K9SRXV0M43913F98EKE6AMRCR) INFO Generating instance 
settings notification: reload `i-acl'
+2023-02-06T06:54:08.044750-0500 
taler-merchant-httpd-9368(5K9SRXV0M43913F98EKE6AMRCR) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4PP2RVC00''
+2023-02-06T06:54:08.044950-0500 
taler-merchant-httpd-9368(5K9SRXV0M43913F98EKE6AMRCR) INFO PG poll job active
+2023-02-06T06:54:08.045011-0500 
taler-merchant-httpd-9368(5K9SRXV0M43913F98EKE6AMRCR) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i-acl'
+2023-02-06T06:54:08.045050-0500 
taler-merchant-httpd-9368(5K9SRXV0M43913F98EKE6AMRCR) INFO Received instance 
settings notification: reload `i-acl'
+2023-02-06T06:54:08.045776-0500 
taler-merchant-httpd-9368(5K9SRXV0M43913F98EKE6AMRCR) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.045868-0500 
taler-merchant-httpd-9368(5K9SRXV0M43913F98EKE6AMRCR) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T06:54:08.045979-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/management/instances completed with response code 204
+2023-02-06T06:54:08.046048-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-patch-ACL'
+2023-02-06T06:54:08.046509-0500 
taler-merchant-httpd-9368(63SDKC07MW6YY7CBDKESDY5SY8) INFO Handling request 
(PATCH) for URL '/management/instances/i-acl'
+2023-02-06T06:54:08.046638-0500 
taler-merchant-httpd-9368(63SDKC07MW6YY7CBDKESDY5SY8) INFO Starting merchant DB 
transaction `PATCH /instances'
+2023-02-06T06:54:08.047283-0500 
taler-merchant-httpd-9368(63SDKC07MW6YY7CBDKESDY5SY8) INFO Adding NEW account 
`payto://x-taler-bank/localhost/3?receiver-name=3'
+2023-02-06T06:54:08.047934-0500 
taler-merchant-httpd-9368(63SDKC07MW6YY7CBDKESDY5SY8) INFO Committing merchant 
DB transaction PATCH /instances
+2023-02-06T06:54:08.055885-0500 
taler-merchant-httpd-9368(63SDKC07MW6YY7CBDKESDY5SY8) INFO Generating instance 
settings notification: reload `i-acl'
+2023-02-06T06:54:08.055940-0500 
taler-merchant-httpd-9368(63SDKC07MW6YY7CBDKESDY5SY8) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4PP2RVC00''
+2023-02-06T06:54:08.056178-0500 
taler-merchant-httpd-9368(63SDKC07MW6YY7CBDKESDY5SY8) INFO PG poll job active
+2023-02-06T06:54:08.056240-0500 
taler-merchant-httpd-9368(63SDKC07MW6YY7CBDKESDY5SY8) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i-acl'
+2023-02-06T06:54:08.056279-0500 
taler-merchant-httpd-9368(63SDKC07MW6YY7CBDKESDY5SY8) INFO Received instance 
settings notification: reload `i-acl'
+2023-02-06T06:54:08.056994-0500 
taler-merchant-httpd-9368(63SDKC07MW6YY7CBDKESDY5SY8) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.057086-0500 
taler-merchant-httpd-9368(63SDKC07MW6YY7CBDKESDY5SY8) INFO Finished handling 
request for `/management/instances/i-acl' with MHD termination code 0
+2023-02-06T06:54:08.057195-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO PATCH 
/instances/$ID completed with response code 204
+2023-02-06T06:54:08.057254-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-create-i2'
+2023-02-06T06:54:08.057606-0500 
taler-merchant-httpd-9368(641MFEZNWCYNVMA1DSX8PG673C) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T06:54:08.057988-0500 
taler-merchant-httpd-9368(641MFEZNWCYNVMA1DSX8PG673C) INFO Starting merchant DB 
transaction `post /instances'
+2023-02-06T06:54:08.059362-0500 
taler-merchant-httpd-9368(641MFEZNWCYNVMA1DSX8PG673C) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T06:54:08.066997-0500 
taler-merchant-httpd-9368(641MFEZNWCYNVMA1DSX8PG673C) INFO Generating instance 
settings notification: reload `i2'
+2023-02-06T06:54:08.067056-0500 
taler-merchant-httpd-9368(641MFEZNWCYNVMA1DSX8PG673C) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4S00''
+2023-02-06T06:54:08.067245-0500 
taler-merchant-httpd-9368(641MFEZNWCYNVMA1DSX8PG673C) INFO PG poll job active
+2023-02-06T06:54:08.067297-0500 
taler-merchant-httpd-9368(641MFEZNWCYNVMA1DSX8PG673C) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i2'
+2023-02-06T06:54:08.067333-0500 
taler-merchant-httpd-9368(641MFEZNWCYNVMA1DSX8PG673C) INFO Received instance 
settings notification: reload `i2'
+2023-02-06T06:54:08.067869-0500 
taler-merchant-httpd-9368(641MFEZNWCYNVMA1DSX8PG673C) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.067974-0500 
taler-merchant-httpd-9368(641MFEZNWCYNVMA1DSX8PG673C) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T06:54:08.068080-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/management/instances completed with response code 204
+2023-02-06T06:54:08.068139-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-create-i2-idem'
+2023-02-06T06:54:08.068534-0500 
taler-merchant-httpd-9368(Q176YEGK8GJCSRJCMR7YF9DX74) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T06:54:08.068918-0500 
taler-merchant-httpd-9368(Q176YEGK8GJCSRJCMR7YF9DX74) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T06:54:08.068982-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/management/instances completed with response code 204
+2023-02-06T06:54:08.069046-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-create-i2-non-idem'
+2023-02-06T06:54:08.069436-0500 
taler-merchant-httpd-9368(WTKGKJ3W56XB7YJCAMH67JM74M) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T06:54:08.069877-0500 
taler-merchant-httpd-9368(WTKGKJ3W56XB7YJCAMH67JM74M) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T06:54:08.069986-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/management/instances completed with response code 409
+2023-02-06T06:54:08.070043-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-delete-i2'
+2023-02-06T06:54:08.070393-0500 
taler-merchant-httpd-9368(N88S0YNA8C48RXT8XPMFYWSY84) INFO Handling request 
(DELETE) for URL '/management/instances/i2'
+2023-02-06T06:54:08.078193-0500 
taler-merchant-httpd-9368(N88S0YNA8C48RXT8XPMFYWSY84) INFO Generating instance 
settings notification: reload `i2'
+2023-02-06T06:54:08.078252-0500 
taler-merchant-httpd-9368(N88S0YNA8C48RXT8XPMFYWSY84) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4S00''
+2023-02-06T06:54:08.078515-0500 
taler-merchant-httpd-9368(N88S0YNA8C48RXT8XPMFYWSY84) INFO PG poll job active
+2023-02-06T06:54:08.078567-0500 
taler-merchant-httpd-9368(N88S0YNA8C48RXT8XPMFYWSY84) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i2'
+2023-02-06T06:54:08.078594-0500 
taler-merchant-httpd-9368(N88S0YNA8C48RXT8XPMFYWSY84) INFO Received instance 
settings notification: reload `i2'
+2023-02-06T06:54:08.079508-0500 
taler-merchant-httpd-9368(N88S0YNA8C48RXT8XPMFYWSY84) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.079627-0500 
taler-merchant-httpd-9368(N88S0YNA8C48RXT8XPMFYWSY84) INFO Finished handling 
request for `/management/instances/i2' with MHD termination code 0
+2023-02-06T06:54:08.079786-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instances-get-i2-post-deletion'
+2023-02-06T06:54:08.080088-0500 
taler-merchant-httpd-9368(MPYTWQ8W0EADXFEGBER7CRGQF0) INFO Handling request 
(GET) for URL '/instances/i2/private'
+2023-02-06T06:54:08.080135-0500 
taler-merchant-httpd-9368(MPYTWQ8W0EADXFEGBER7CRGQF0) WARNING Instance `i2' was 
deleted
+2023-02-06T06:54:08.080273-0500 
taler-merchant-httpd-9368(MPYTWQ8W0EADXFEGBER7CRGQF0) INFO Finished handling 
request for `/instances/i2/private' with MHD termination code 0
+2023-02-06T06:54:08.080397-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 WARNING 
Attempt to lookup command for empty label
+2023-02-06T06:54:08.080455-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-delete-then-purge-i2'
+2023-02-06T06:54:08.080733-0500 
taler-merchant-httpd-9368(YEQRCCVEG55ZJXEM8H987XC2MW) INFO Handling request 
(DELETE) for URL '/management/instances/i2'
+2023-02-06T06:54:08.089306-0500 
taler-merchant-httpd-9368(YEQRCCVEG55ZJXEM8H987XC2MW) INFO Generating instance 
settings notification: reload `i2'
+2023-02-06T06:54:08.089362-0500 
taler-merchant-httpd-9368(YEQRCCVEG55ZJXEM8H987XC2MW) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4S00''
+2023-02-06T06:54:08.089577-0500 
taler-merchant-httpd-9368(YEQRCCVEG55ZJXEM8H987XC2MW) INFO PG poll job active
+2023-02-06T06:54:08.089639-0500 
taler-merchant-httpd-9368(YEQRCCVEG55ZJXEM8H987XC2MW) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i2'
+2023-02-06T06:54:08.089676-0500 
taler-merchant-httpd-9368(YEQRCCVEG55ZJXEM8H987XC2MW) INFO Received instance 
settings notification: reload `i2'
+2023-02-06T06:54:08.089855-0500 
taler-merchant-httpd-9368(YEQRCCVEG55ZJXEM8H987XC2MW) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.089944-0500 
taler-merchant-httpd-9368(YEQRCCVEG55ZJXEM8H987XC2MW) INFO Finished handling 
request for `/management/instances/i2' with MHD termination code 0
+2023-02-06T06:54:08.090107-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-purge-i1'
+2023-02-06T06:54:08.090408-0500 
taler-merchant-httpd-9368(6DBXQ0801NQVASHT77DH3PK2MM) INFO Handling request 
(DELETE) for URL '/management/instances/i1'
+2023-02-06T06:54:08.100391-0500 
taler-merchant-httpd-9368(6DBXQ0801NQVASHT77DH3PK2MM) INFO Generating instance 
settings notification: reload `i1'
+2023-02-06T06:54:08.100448-0500 
taler-merchant-httpd-9368(6DBXQ0801NQVASHT77DH3PK2MM) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4RG0''
+2023-02-06T06:54:08.100640-0500 
taler-merchant-httpd-9368(6DBXQ0801NQVASHT77DH3PK2MM) INFO PG poll job active
+2023-02-06T06:54:08.100700-0500 
taler-merchant-httpd-9368(6DBXQ0801NQVASHT77DH3PK2MM) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i1'
+2023-02-06T06:54:08.100737-0500 
taler-merchant-httpd-9368(6DBXQ0801NQVASHT77DH3PK2MM) INFO Received instance 
settings notification: reload `i1'
+2023-02-06T06:54:08.100917-0500 
taler-merchant-httpd-9368(6DBXQ0801NQVASHT77DH3PK2MM) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.101017-0500 
taler-merchant-httpd-9368(6DBXQ0801NQVASHT77DH3PK2MM) INFO Finished handling 
request for `/management/instances/i1' with MHD termination code 0
+2023-02-06T06:54:08.101155-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-purge-then-delete-i1'
+2023-02-06T06:54:08.101497-0500 
taler-merchant-httpd-9368(YPYFVX98PG3K4AV6H6PP04WA3G) INFO Handling request 
(DELETE) for URL '/management/instances/i1'
+2023-02-06T06:54:08.101683-0500 
taler-merchant-httpd-9368(YPYFVX98PG3K4AV6H6PP04WA3G) INFO Finished handling 
request for `/management/instances/i1' with MHD termination code 0
+2023-02-06T06:54:08.101784-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-purge-i-acl-middle'
+2023-02-06T06:54:08.102112-0500 
taler-merchant-httpd-9368(2NC61KZ6ACQESWZ4QM7306V5DC) INFO Handling request 
(DELETE) for URL '/management/instances/i-acl'
+2023-02-06T06:54:08.111414-0500 
taler-merchant-httpd-9368(2NC61KZ6ACQESWZ4QM7306V5DC) INFO Generating instance 
settings notification: reload `i-acl'
+2023-02-06T06:54:08.111477-0500 
taler-merchant-httpd-9368(2NC61KZ6ACQESWZ4QM7306V5DC) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'D4PP2RVC00''
+2023-02-06T06:54:08.111646-0500 
taler-merchant-httpd-9368(2NC61KZ6ACQESWZ4QM7306V5DC) INFO PG poll job active
+2023-02-06T06:54:08.111701-0500 
taler-merchant-httpd-9368(2NC61KZ6ACQESWZ4QM7306V5DC) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `i-acl'
+2023-02-06T06:54:08.111739-0500 
taler-merchant-httpd-9368(2NC61KZ6ACQESWZ4QM7306V5DC) INFO Received instance 
settings notification: reload `i-acl'
+2023-02-06T06:54:08.111938-0500 
taler-merchant-httpd-9368(2NC61KZ6ACQESWZ4QM7306V5DC) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.112046-0500 
taler-merchant-httpd-9368(2NC61KZ6ACQESWZ4QM7306V5DC) INFO Finished handling 
request for `/management/instances/i-acl' with MHD termination code 0
+2023-02-06T06:54:08.112207-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-purge-default-middle'
+2023-02-06T06:54:08.112541-0500 
taler-merchant-httpd-9368(Q4NY1AGD8C10NVS1YDN5BWBCQ4) INFO Handling request 
(DELETE) for URL '/management/instances/default'
+2023-02-06T06:54:08.133724-0500 
taler-merchant-httpd-9368(Q4NY1AGD8C10NVS1YDN5BWBCQ4) INFO Generating instance 
settings notification: reload `default'
+2023-02-06T06:54:08.133783-0500 
taler-merchant-httpd-9368(Q4NY1AGD8C10NVS1YDN5BWBCQ4) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'CHJPCRBNDHT00''
+2023-02-06T06:54:08.133969-0500 
taler-merchant-httpd-9368(Q4NY1AGD8C10NVS1YDN5BWBCQ4) INFO PG poll job active
+2023-02-06T06:54:08.134045-0500 
taler-merchant-httpd-9368(Q4NY1AGD8C10NVS1YDN5BWBCQ4) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `default'
+2023-02-06T06:54:08.134079-0500 
taler-merchant-httpd-9368(Q4NY1AGD8C10NVS1YDN5BWBCQ4) INFO Received instance 
settings notification: reload `default'
+2023-02-06T06:54:08.134243-0500 
taler-merchant-httpd-9368(Q4NY1AGD8C10NVS1YDN5BWBCQ4) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.134336-0500 
taler-merchant-httpd-9368(Q4NY1AGD8C10NVS1YDN5BWBCQ4) INFO Finished handling 
request for `/management/instances/default' with MHD termination code 0
+2023-02-06T06:54:08.134486-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `instance-create-default-after-purge'
+2023-02-06T06:54:08.134962-0500 
taler-merchant-httpd-9368(AD0AJRZ6V8ZKT2R95V46Z48HR4) INFO Handling request 
(POST) for URL '/management/instances'
+2023-02-06T06:54:08.135364-0500 
taler-merchant-httpd-9368(AD0AJRZ6V8ZKT2R95V46Z48HR4) INFO Starting merchant DB 
transaction `post /instances'
+2023-02-06T06:54:08.136673-0500 
taler-merchant-httpd-9368(AD0AJRZ6V8ZKT2R95V46Z48HR4) INFO Committing merchant 
DB transaction post /instances
+2023-02-06T06:54:08.144777-0500 
taler-merchant-httpd-9368(AD0AJRZ6V8ZKT2R95V46Z48HR4) INFO Generating instance 
settings notification: reload `default'
+2023-02-06T06:54:08.144838-0500 
taler-merchant-httpd-9368(AD0AJRZ6V8ZKT2R95V46Z48HR4) INFO Executing command 
`NOTIFY XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0, 'CHJPCRBNDHT00''
+2023-02-06T06:54:08.145007-0500 
taler-merchant-httpd-9368(AD0AJRZ6V8ZKT2R95V46Z48HR4) INFO PG poll job active
+2023-02-06T06:54:08.145059-0500 
taler-merchant-httpd-9368(AD0AJRZ6V8ZKT2R95V46Z48HR4) INFO Received 
notification xn0rw6kt8y9mk75ym85sc7gta6sc5w91fxwdqp0zb42gy3e52dzh0 with extra 
data `default'
+2023-02-06T06:54:08.145095-0500 
taler-merchant-httpd-9368(AD0AJRZ6V8ZKT2R95V46Z48HR4) INFO Received instance 
settings notification: reload `default'
+2023-02-06T06:54:08.145764-0500 
taler-merchant-httpd-9368(AD0AJRZ6V8ZKT2R95V46Z48HR4) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.145879-0500 
taler-merchant-httpd-9368(AD0AJRZ6V8ZKT2R95V46Z48HR4) INFO Finished handling 
request for `/management/instances' with MHD termination code 0
+2023-02-06T06:54:08.146006-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/management/instances completed with response code 204
+2023-02-06T06:54:08.146066-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `get-products-empty'
+2023-02-06T06:54:08.146412-0500 
taler-merchant-httpd-9368(KW9CTK8FVSEC4TE5FBZYC2KNQ0) INFO Handling request 
(GET) for URL '/private/products'
+2023-02-06T06:54:08.147086-0500 
taler-merchant-httpd-9368(KW9CTK8FVSEC4TE5FBZYC2KNQ0) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T06:54:08.147235-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `post-products-p1'
+2023-02-06T06:54:08.147628-0500 
taler-merchant-httpd-9368(KFTQZKPG6JG5CJ555TSNHRR5FW) INFO Handling request 
(POST) for URL '/private/products'
+2023-02-06T06:54:08.147761-0500 
taler-merchant-httpd-9368(KFTQZKPG6JG5CJ555TSNHRR5FW) INFO Starting merchant DB 
transaction `/post products'
+2023-02-06T06:54:08.149213-0500 
taler-merchant-httpd-9368(KFTQZKPG6JG5CJ555TSNHRR5FW) INFO Committing merchant 
DB transaction /post products
+2023-02-06T06:54:08.155999-0500 
taler-merchant-httpd-9368(KFTQZKPG6JG5CJ555TSNHRR5FW) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T06:54:08.156117-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/products completed with response code 204
+2023-02-06T06:54:08.156188-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `post-products-p1-idem'
+2023-02-06T06:54:08.156572-0500 
taler-merchant-httpd-9368(HW46ZAPGE416BDE9DSKP120VR0) INFO Handling request 
(POST) for URL '/private/products'
+2023-02-06T06:54:08.156681-0500 
taler-merchant-httpd-9368(HW46ZAPGE416BDE9DSKP120VR0) INFO Starting merchant DB 
transaction `/post products'
+2023-02-06T06:54:08.157349-0500 
taler-merchant-httpd-9368(HW46ZAPGE416BDE9DSKP120VR0) INFO Rolling back 
merchant DB transaction `/post products'
+2023-02-06T06:54:08.157636-0500 
taler-merchant-httpd-9368(HW46ZAPGE416BDE9DSKP120VR0) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T06:54:08.157709-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/products completed with response code 204
+2023-02-06T06:54:08.157772-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `post-products-p1-non-idem'
+2023-02-06T06:54:08.158152-0500 
taler-merchant-httpd-9368(J8GV1FDRTCS2GY0MEBF7AEX3KW) INFO Handling request 
(POST) for URL '/private/products'
+2023-02-06T06:54:08.158245-0500 
taler-merchant-httpd-9368(J8GV1FDRTCS2GY0MEBF7AEX3KW) INFO Starting merchant DB 
transaction `/post products'
+2023-02-06T06:54:08.158812-0500 
taler-merchant-httpd-9368(J8GV1FDRTCS2GY0MEBF7AEX3KW) INFO Rolling back 
merchant DB transaction `/post products'
+2023-02-06T06:54:08.159140-0500 
taler-merchant-httpd-9368(J8GV1FDRTCS2GY0MEBF7AEX3KW) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T06:54:08.159257-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/products completed with response code 409
+2023-02-06T06:54:08.159318-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `get-products-p1'
+2023-02-06T06:54:08.159607-0500 
taler-merchant-httpd-9368(VDJWRJRY16YCA167SCAA79MA3W) INFO Handling request 
(GET) for URL '/private/products'
+2023-02-06T06:54:08.160158-0500 
taler-merchant-httpd-9368(VDJWRJRY16YCA167SCAA79MA3W) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T06:54:08.160297-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `get-product-p1'
+2023-02-06T06:54:08.160587-0500 
taler-merchant-httpd-9368(7E2R3DWSHSKY2BRERZSA84KPQM) INFO Handling request 
(GET) for URL '/private/products/product-1'
+2023-02-06T06:54:08.161217-0500 
taler-merchant-httpd-9368(7E2R3DWSHSKY2BRERZSA84KPQM) INFO Finished handling 
request for `/private/products/product-1' with MHD termination code 0
+2023-02-06T06:54:08.161389-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `post-products-p2'
+2023-02-06T06:54:08.161742-0500 
taler-merchant-httpd-9368(H415WKFDT2CPBYXM7TYHXBD9AM) INFO Handling request 
(POST) for URL '/private/products'
+2023-02-06T06:54:08.161836-0500 
taler-merchant-httpd-9368(H415WKFDT2CPBYXM7TYHXBD9AM) INFO Starting merchant DB 
transaction `/post products'
+2023-02-06T06:54:08.162825-0500 
taler-merchant-httpd-9368(H415WKFDT2CPBYXM7TYHXBD9AM) INFO Committing merchant 
DB transaction /post products
+2023-02-06T06:54:08.167072-0500 
taler-merchant-httpd-9368(H415WKFDT2CPBYXM7TYHXBD9AM) INFO Finished handling 
request for `/private/products' with MHD termination code 0
+2023-02-06T06:54:08.167182-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/products completed with response code 204
+2023-02-06T06:54:08.167249-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `patch-products-p2'
+2023-02-06T06:54:08.167662-0500 
taler-merchant-httpd-9368(BAEM33BRVJ23GXTCSG0W34QWW4) INFO Handling request 
(PATCH) for URL '/private/products/product-2'
+2023-02-06T06:54:08.178122-0500 
taler-merchant-httpd-9368(BAEM33BRVJ23GXTCSG0W34QWW4) INFO Finished handling 
request for `/private/products/product-2' with MHD termination code 0
+2023-02-06T06:54:08.178232-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO PATCH 
/products/$ID completed with response code 204
+2023-02-06T06:54:08.178298-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `get-product-p2'
+2023-02-06T06:54:08.178711-0500 
taler-merchant-httpd-9368(CBQ31MVZVJWVT32ARTY1WRWW9W) INFO Handling request 
(GET) for URL '/private/products/product-2'
+2023-02-06T06:54:08.179404-0500 
taler-merchant-httpd-9368(CBQ31MVZVJWVT32ARTY1WRWW9W) INFO Finished handling 
request for `/private/products/product-2' with MHD termination code 0
+2023-02-06T06:54:08.179603-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `get-product-nx'
+2023-02-06T06:54:08.179915-0500 
taler-merchant-httpd-9368(D1V6QRG8GQD6MQDZ49F0XTFEV0) INFO Handling request 
(GET) for URL '/private/products/product-nx'
+2023-02-06T06:54:08.180288-0500 
taler-merchant-httpd-9368(D1V6QRG8GQD6MQDZ49F0XTFEV0) INFO Finished handling 
request for `/private/products/product-nx' with MHD termination code 0
+2023-02-06T06:54:08.180460-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `patch-products-p3-nx'
+2023-02-06T06:54:08.180879-0500 
taler-merchant-httpd-9368(D1HE7E9D33R2PPB31QAJEPF6Z8) INFO Handling request 
(PATCH) for URL '/private/products/product-3'
+2023-02-06T06:54:08.181672-0500 
taler-merchant-httpd-9368(D1HE7E9D33R2PPB31QAJEPF6Z8) INFO Finished handling 
request for `/private/products/product-3' with MHD termination code 0
+2023-02-06T06:54:08.181785-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO PATCH 
/products/$ID completed with response code 404
+2023-02-06T06:54:08.181849-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `get-products-empty'
+2023-02-06T06:54:08.182161-0500 
taler-merchant-httpd-9368(KRKT41RN041HF679KBDA0MFBGM) INFO Handling request 
(DELETE) for URL '/private/products/p1'
+2023-02-06T06:54:08.182985-0500 
taler-merchant-httpd-9368(KRKT41RN041HF679KBDA0MFBGM) INFO Finished handling 
request for `/private/products/p1' with MHD termination code 0
+2023-02-06T06:54:08.183107-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `get-products-empty'
+2023-02-06T06:54:08.183420-0500 
taler-merchant-httpd-9368(F6EFFXAP3Q7G1MB0T9EPM5FDWC) INFO Handling request 
(DELETE) for URL '/private/products/product-1'
+2023-02-06T06:54:08.189392-0500 
taler-merchant-httpd-9368(F6EFFXAP3Q7G1MB0T9EPM5FDWC) INFO Finished handling 
request for `/private/products/product-1' with MHD termination code 0
+2023-02-06T06:54:08.189540-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `lock-product-p2'
+2023-02-06T06:54:08.189936-0500 
taler-merchant-httpd-9368(CWB85EYNR2TDTKEQAEE3624Q2M) INFO Handling request 
(POST) for URL '/private/products/product-2/lock'
+2023-02-06T06:54:08.200429-0500 
taler-merchant-httpd-9368(CWB85EYNR2TDTKEQAEE3624Q2M) INFO Finished handling 
request for `/private/products/product-2/lock' with MHD termination code 0
+2023-02-06T06:54:08.200544-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO LOCK 
/products/$ID completed with response code 204
+2023-02-06T06:54:08.200612-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `lock-product-nx'
+2023-02-06T06:54:08.200984-0500 
taler-merchant-httpd-9368(M8B5NXX6BDGK77SFK306JG69HM) INFO Handling request 
(POST) for URL '/private/products/product-nx/lock'
+2023-02-06T06:54:08.203012-0500 
taler-merchant-httpd-9368(M8B5NXX6BDGK77SFK306JG69HM) INFO Finished handling 
request for `/private/products/product-nx/lock' with MHD termination code 0
+2023-02-06T06:54:08.203170-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO LOCK 
/products/$ID completed with response code 404
+2023-02-06T06:54:08.203233-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `lock-product-too-much'
+2023-02-06T06:54:08.203581-0500 
taler-merchant-httpd-9368(DD8CPZJEBHE0071P4MA0T3EN1M) INFO Handling request 
(POST) for URL '/private/products/product-2/lock'
+2023-02-06T06:54:08.205394-0500 
taler-merchant-httpd-9368(DD8CPZJEBHE0071P4MA0T3EN1M) INFO Finished handling 
request for `/private/products/product-2/lock' with MHD termination code 0
+2023-02-06T06:54:08.205570-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO LOCK 
/products/$ID completed with response code 410
+2023-02-06T06:54:08.205633-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `delete-product-locked'
+2023-02-06T06:54:08.205959-0500 
taler-merchant-httpd-9368(MN6RM98QFXM2N8C679EPW5X8NM) INFO Handling request 
(DELETE) for URL '/private/products/product-2'
+2023-02-06T06:54:08.206719-0500 
taler-merchant-httpd-9368(MN6RM98QFXM2N8C679EPW5X8NM) INFO Finished handling 
request for `/private/products/product-2' with MHD termination code 0
+2023-02-06T06:54:08.206882-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.206921-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: create-reserve-1
+2023-02-06T06:54:08.207091-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting administrative transaction at 
`http://localhost:8082/2/admin/add-incoming' for reserve Z9GB3BGJ
+2023-02-06T06:54:08.207733-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Handling request for `/2/admin/add-incoming'
+2023-02-06T06:54:08.207784-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T06:54:08.207828-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Handling request for `/2/admin/add-incoming'
+2023-02-06T06:54:08.207851-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T06:54:08.207879-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Handling request for `/2/admin/add-incoming'
+2023-02-06T06:54:08.207901-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Fakebank, serving URL `/admin/add-incoming' for account `2'
+2023-02-06T06:54:08.208016-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Receiving incoming wire transfer: 62->2, subject: Z9GB3BGJ, amount: EUR:10.02
+2023-02-06T06:54:08.208106-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Making transfer from 62 to 2 over EUR:10.02 and subject Z9GB3BGJ at row 1
+2023-02-06T06:54:08.208396-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.208436-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: wirewatch-1
+2023-02-06T06:54:08.228209-0500 taler-exchange-wirewatch-9428 INFO Change in 
PQ event FD to -1
+2023-02-06T06:54:08.228361-0500 taler-exchange-wirewatch-9428 INFO New poll FD 
is -1
+2023-02-06T06:54:08.239472-0500 taler-exchange-wirewatch-9428 INFO Change in 
PQ event FD to 8
+2023-02-06T06:54:08.239529-0500 taler-exchange-wirewatch-9428 INFO New poll FD 
is 8
+2023-02-06T06:54:08.239705-0500 taler-exchange-wirewatch-9428 INFO Will try to 
lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T06:54:08.239763-0500 taler-exchange-wirewatch-9428 INFO Starting 
transaction `begin_shard'
+2023-02-06T06:54:08.243088-0500 taler-exchange-wirewatch-9428 INFO Trying to 
claim shard (0-1]
+2023-02-06T06:54:08.256016-0500 taler-exchange-wirewatch-9428 INFO Claimed new 
shard
+2023-02-06T06:54:08.256071-0500 taler-exchange-wirewatch-9428 INFO Starting 
with shard wirewatch-exchange-account-exchange at (0,1] locked for 0 ms
+2023-02-06T06:54:08.256100-0500 taler-exchange-wirewatch-9428 INFO Resetting 
shard start to original start point (0)
+2023-02-06T06:54:08.256130-0500 taler-exchange-wirewatch-9428 INFO Requesting 
credit history staring from 0
+2023-02-06T06:54:08.256179-0500 taler-exchange-wirewatch-9428 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1'
+2023-02-06T06:54:08.257016-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Handling request for `/2/history/incoming'
+2023-02-06T06:54:08.257068-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T06:54:08.257112-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Handling /history/incoming connection 0x7ff5d0009bd0 (0)
+2023-02-06T06:54:08.257160-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Request for 1 records from 0
+2023-02-06T06:54:08.257220-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Returning 1 credit transactions starting (inclusive) from 1
+2023-02-06T06:54:08.257596-0500 taler-exchange-wirewatch-9428 INFO History 
request returned with HTTP status 200
+2023-02-06T06:54:08.257635-0500 taler-exchange-wirewatch-9428 INFO Starting 
READ COMMITTED transaction `wirewatch check for incoming wire transfers`
+2023-02-06T06:54:08.257888-0500 taler-exchange-wirewatch-9428 INFO Importing 1 
transactions
+2023-02-06T06:54:08.262346-0500 taler-exchange-wirewatch-9428 INFO Notifying 
on reserve!
+2023-02-06T06:54:08.262407-0500 taler-exchange-wirewatch-9428 INFO Executing 
command `NOTIFY XA3D27NGR2ZG3BJ1VKX2BQX3HG1ZJE71C25X3JRKTGF4FE6HXG5B0, '''
+2023-02-06T06:54:08.262511-0500 taler-exchange-wirewatch-9428 INFO PG poll job 
active
+2023-02-06T06:54:08.262555-0500 taler-exchange-wirewatch-9428 INFO PG poll job 
finishes after 0 events
+2023-02-06T06:54:08.262588-0500 taler-exchange-wirewatch-9428 INFO Imported 
transaction 1.2023-02-06T06:54:08.262620-0500 taler-exchange-wirewatch-9428 
INFO Completing shard 0-1
+2023-02-06T06:54:08.263205-0500 taler-exchange-wirewatch-9428 INFO Completed 
shard wirewatch-exchange-account-exchange (0,1] after 23 ms
+2023-02-06T06:54:08.263243-0500 taler-exchange-wirewatch-9428 INFO Committing 
wirewatch-exchange-account-exchange progress (0,1] at 1
+ (shard done)2023-02-06T06:54:08.267212-0500 taler-exchange-wirewatch-9428 
INFO Increasing batch size to 2
+2023-02-06T06:54:08.267266-0500 taler-exchange-wirewatch-9428 INFO Will try to 
lock next shard of wirewatch-exchange-account-exchange in 0 ms
+2023-02-06T06:54:08.267352-0500 taler-exchange-wirewatch-9428 INFO Starting 
transaction `begin_shard'
+2023-02-06T06:54:08.268135-0500 taler-exchange-wirewatch-9428 INFO Trying to 
claim shard (1-2]
+2023-02-06T06:54:08.278218-0500 taler-exchange-wirewatch-9428 INFO Claimed new 
shard
+2023-02-06T06:54:08.278274-0500 taler-exchange-wirewatch-9428 INFO Starting 
with shard wirewatch-exchange-account-exchange at (1,2] locked for 0 ms
+2023-02-06T06:54:08.278315-0500 taler-exchange-wirewatch-9428 INFO Resetting 
shard start to original start point (0)
+2023-02-06T06:54:08.278366-0500 taler-exchange-wirewatch-9428 INFO Requesting 
credit history staring from 1
+2023-02-06T06:54:08.278411-0500 taler-exchange-wirewatch-9428 INFO Requesting 
credit history at `http://localhost:8082/2/history/incoming?delta=1&start=1'
+2023-02-06T06:54:08.278730-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Handling request for `/2/history/incoming'
+2023-02-06T06:54:08.278776-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Fakebank, serving URL `/history/incoming' for account `2'
+2023-02-06T06:54:08.278800-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Handling /history/incoming connection 0x7ff5d0009d70 (0)
+2023-02-06T06:54:08.278825-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Request for 1 records from 1
+2023-02-06T06:54:08.279021-0500 taler-exchange-wirewatch-9428 INFO History 
request returned with HTTP status 204
+2023-02-06T06:54:08.279064-0500 taler-exchange-wirewatch-9428 INFO Transaction 
list drained and in test mode. Exiting
+2023-02-06T06:54:08.290816-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.290869-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: check_bank_transfer-2
+2023-02-06T06:54:08.290928-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
converted debit_payto (payto://x-taler-bank/localhost/62?receiver-name=62) to 
debit_account (62)
+2023-02-06T06:54:08.290972-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.290997-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: withdraw-coin-1
+2023-02-06T06:54:08.291754-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:08.291870-0500 
taler-exchange-httpd-9377(HSVD2Y9AE1BWZE91T9T6H46FB4) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T06:54:08.291910-0500 
taler-exchange-httpd-9377(HSVD2Y9AE1BWZE91T9T6H46FB4) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T06:54:08.291939-0500 
taler-exchange-httpd-9377(HSVD2Y9AE1BWZE91T9T6H46FB4) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T06:54:08.292102-0500 taler-exchange-secmod-cs-9376 INFO Received 
request to derive R with key EW528A72
+2023-02-06T06:54:08.292379-0500 taler-exchange-secmod-cs-9376 INFO Sending 
message of type 12 and length 72
+2023-02-06T06:54:08.292413-0500 taler-exchange-secmod-cs-9376 INFO Sending 
message of length 72
+2023-02-06T06:54:08.292448-0500 taler-exchange-secmod-cs-9376 INFO Sent CS 
Derived R after 353 µs
+2023-02-06T06:54:08.292677-0500 
taler-exchange-httpd-9377(HSVD2Y9AE1BWZE91T9T6H46FB4) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T06:54:08.294707-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Attempting to withdraw from reserve Z9GB3BGJ
+2023-02-06T06:54:08.295111-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:08.295206-0500 
taler-exchange-httpd-9377(CBYQ0F1JHYJP1XAX40ENK86AWM) INFO Handling request 
(POST) for URL 
'/reserves/ZWVSDJXYV7W2NVW160M59Z66CAQ7EKB5BYJ51ZXTPZVAMYTM6F5G/withdraw'
+2023-02-06T06:54:08.295242-0500 
taler-exchange-httpd-9377(CBYQ0F1JHYJP1XAX40ENK86AWM) INFO Handling request 
(POST) for URL 
'/reserves/ZWVSDJXYV7W2NVW160M59Z66CAQ7EKB5BYJ51ZXTPZVAMYTM6F5G/withdraw'
+2023-02-06T06:54:08.295268-0500 
taler-exchange-httpd-9377(CBYQ0F1JHYJP1XAX40ENK86AWM) INFO Handling request 
(POST) for URL 
'/reserves/ZWVSDJXYV7W2NVW160M59Z66CAQ7EKB5BYJ51ZXTPZVAMYTM6F5G/withdraw'
+2023-02-06T06:54:08.295734-0500 taler-exchange-secmod-cs-9376 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T06:54:08.295881-0500 taler-exchange-secmod-cs-9376 INFO Sending 
message of type 9 and length 44
+2023-02-06T06:54:08.295916-0500 taler-exchange-secmod-cs-9376 INFO Sending 
message of length 44
+2023-02-06T06:54:08.295948-0500 taler-exchange-secmod-cs-9376 INFO Sent CS 
signature after 217 µs
+2023-02-06T06:54:08.296049-0500 
taler-exchange-httpd-9377(CBYQ0F1JHYJP1XAX40ENK86AWM) INFO Starting transaction 
`run withdraw'
+2023-02-06T06:54:08.297065-0500 
taler-exchange-httpd-9377(CBYQ0F1JHYJP1XAX40ENK86AWM) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T06:54:08.297113-0500 
taler-exchange-httpd-9377(CBYQ0F1JHYJP1XAX40ENK86AWM) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T06:54:08.297142-0500 
taler-exchange-httpd-9377(CBYQ0F1JHYJP1XAX40ENK86AWM) INFO KYC check: new total 
is EUR:5.01
+2023-02-06T06:54:08.311786-0500 
taler-exchange-httpd-9377(CBYQ0F1JHYJP1XAX40ENK86AWM) INFO Request for 
`/reserves/ZWVSDJXYV7W2NVW160M59Z66CAQ7EKB5BYJ51ZXTPZVAMYTM6F5G/withdraw' 
completed (0)
+2023-02-06T06:54:08.313876-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.313919-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: withdraw-coin-2
+2023-02-06T06:54:08.314438-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:08.314563-0500 
taler-exchange-httpd-9377(BWNGJKJNGE8EMB3629YFRACRCG) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T06:54:08.314621-0500 
taler-exchange-httpd-9377(BWNGJKJNGE8EMB3629YFRACRCG) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T06:54:08.314652-0500 
taler-exchange-httpd-9377(BWNGJKJNGE8EMB3629YFRACRCG) INFO Handling request 
(POST) for URL '/csr-withdraw'
+2023-02-06T06:54:08.314825-0500 taler-exchange-secmod-cs-9376 INFO Received 
request to derive R with key EW528A72
+2023-02-06T06:54:08.315111-0500 taler-exchange-secmod-cs-9376 INFO Sending 
message of type 12 and length 72
+2023-02-06T06:54:08.315150-0500 taler-exchange-secmod-cs-9376 INFO Sending 
message of length 72
+2023-02-06T06:54:08.315184-0500 taler-exchange-secmod-cs-9376 INFO Sent CS 
Derived R after 364 µs
+2023-02-06T06:54:08.315389-0500 
taler-exchange-httpd-9377(BWNGJKJNGE8EMB3629YFRACRCG) INFO Request for 
`/csr-withdraw' completed (0)
+2023-02-06T06:54:08.317276-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Attempting to withdraw from reserve Z9GB3BGJ
+2023-02-06T06:54:08.317634-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:08.317723-0500 
taler-exchange-httpd-9377(GMQPDFYQSP2VXQXT7CZY5G9H70) INFO Handling request 
(POST) for URL 
'/reserves/ZWVSDJXYV7W2NVW160M59Z66CAQ7EKB5BYJ51ZXTPZVAMYTM6F5G/withdraw'
+2023-02-06T06:54:08.317762-0500 
taler-exchange-httpd-9377(GMQPDFYQSP2VXQXT7CZY5G9H70) INFO Handling request 
(POST) for URL 
'/reserves/ZWVSDJXYV7W2NVW160M59Z66CAQ7EKB5BYJ51ZXTPZVAMYTM6F5G/withdraw'
+2023-02-06T06:54:08.317790-0500 
taler-exchange-httpd-9377(GMQPDFYQSP2VXQXT7CZY5G9H70) INFO Handling request 
(POST) for URL 
'/reserves/ZWVSDJXYV7W2NVW160M59Z66CAQ7EKB5BYJ51ZXTPZVAMYTM6F5G/withdraw'
+2023-02-06T06:54:08.318188-0500 taler-exchange-secmod-cs-9376 INFO Received 
request to sign over bytes with key EW528A72
+2023-02-06T06:54:08.318311-0500 taler-exchange-secmod-cs-9376 INFO Sending 
message of type 9 and length 44
+2023-02-06T06:54:08.318352-0500 taler-exchange-secmod-cs-9376 INFO Sending 
message of length 44
+2023-02-06T06:54:08.318399-0500 taler-exchange-secmod-cs-9376 INFO Sent CS 
signature after 212 µs
+2023-02-06T06:54:08.318465-0500 
taler-exchange-httpd-9377(GMQPDFYQSP2VXQXT7CZY5G9H70) INFO Starting transaction 
`run withdraw'
+2023-02-06T06:54:08.318819-0500 
taler-exchange-httpd-9377(GMQPDFYQSP2VXQXT7CZY5G9H70) INFO Signaling amount 
EUR:5.01 for KYC check
+2023-02-06T06:54:08.318861-0500 
taler-exchange-httpd-9377(GMQPDFYQSP2VXQXT7CZY5G9H70) INFO KYC check with new 
amount EUR:5.01
+2023-02-06T06:54:08.318887-0500 
taler-exchange-httpd-9377(GMQPDFYQSP2VXQXT7CZY5G9H70) INFO KYC check: new total 
is EUR:5.01
+2023-02-06T06:54:08.322853-0500 
taler-exchange-httpd-9377(GMQPDFYQSP2VXQXT7CZY5G9H70) INFO Request for 
`/reserves/ZWVSDJXYV7W2NVW160M59Z66CAQ7EKB5BYJ51ZXTPZVAMYTM6F5G/withdraw' 
completed (0)
+2023-02-06T06:54:08.324917-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.324958-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: get-orders-empty
+2023-02-06T06:54:08.325338-0500 
taler-merchant-httpd-9368(JT1AERSRXH3JXJ540N0Z5VB43C) INFO Handling request 
(GET) for URL '/private/orders'
+2023-02-06T06:54:08.326442-0500 
taler-merchant-httpd-9368(JT1AERSRXH3JXJ540N0Z5VB43C) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T06:54:08.326617-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.326656-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: withdraw-status-1
+2023-02-06T06:54:08.326903-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:08.327066-0500 
taler-exchange-httpd-9377(SPB4QJYT1Z70JEWYKX4GYE6BXC) INFO Handling request 
(GET) for URL '/reserves/ZWVSDJXYV7W2NVW160M59Z66CAQ7EKB5BYJ51ZXTPZVAMYTM6F5G'
+2023-02-06T06:54:08.327119-0500 
taler-exchange-httpd-9377(SPB4QJYT1Z70JEWYKX4GYE6BXC) INFO Starting transaction 
`get reserve balance'
+2023-02-06T06:54:08.327840-0500 
taler-exchange-httpd-9377(SPB4QJYT1Z70JEWYKX4GYE6BXC) INFO Request for 
`/reserves/ZWVSDJXYV7W2NVW160M59Z66CAQ7EKB5BYJ51ZXTPZVAMYTM6F5G' completed (0)
+2023-02-06T06:54:08.327936-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.327972-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: delete-order-nx
+2023-02-06T06:54:08.328304-0500 
taler-merchant-httpd-9368(1ZAKSMXQKYQQXJDKHJTG0K4744) INFO Handling request 
(DELETE) for URL '/private/orders/1'
+2023-02-06T06:54:08.330239-0500 
taler-merchant-httpd-9368(1ZAKSMXQKYQQXJDKHJTG0K4744) INFO Finished handling 
request for `/private/orders/1' with MHD termination code 0
+2023-02-06T06:54:08.330379-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.330417-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: poll-orders-1-start
+2023-02-06T06:54:08.330654-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.330693-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: claim-order-nx
+2023-02-06T06:54:08.330776-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Claiming order at http://localhost:8080/orders/1/claim
+2023-02-06T06:54:08.330774-0500 
taler-merchant-httpd-9368(CB5DEGHZMBK0YT7X1A6FTB6SSR) INFO Handling request 
(GET) for URL '/private/orders'
+2023-02-06T06:54:08.331504-0500 
taler-merchant-httpd-9368(CB5DEGHZMBK0YT7X1A6FTB6SSR) INFO Executing PQ command 
`LISTEN XT64NZ8GTXRF43Q6AWY42YN2T43473QVKN5PX5DG8KS298D05MRS0'
+2023-02-06T06:54:08.331846-0500 
taler-merchant-httpd-9368(EFVM4VTMZCMCY6R7KFY100YA0W) INFO Handling request 
(POST) for URL '/orders/1/claim'
+2023-02-06T06:54:08.331927-0500 
taler-merchant-httpd-9368(EFVM4VTMZCMCY6R7KFY100YA0W) INFO Starting merchant DB 
transaction `claim order'
+2023-02-06T06:54:08.332776-0500 
taler-merchant-httpd-9368(EFVM4VTMZCMCY6R7KFY100YA0W) INFO Rolling back 
merchant DB transaction `claim order'
+2023-02-06T06:54:08.333098-0500 
taler-merchant-httpd-9368(EFVM4VTMZCMCY6R7KFY100YA0W) INFO Finished handling 
request for `/orders/1/claim' with MHD termination code 0
+2023-02-06T06:54:08.333244-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 ERROR 
Order claimed with status 404
+2023-02-06T06:54:08.333287-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 WARNING 
Proposal lookup failed with HTTP status code 404/2300
+2023-02-06T06:54:08.333335-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.333364-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: create-proposal-1
+2023-02-06T06:54:08.333825-0500 
taler-merchant-httpd-9368(PNKJNHR074MS930JRY3J54DPP8) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T06:54:08.335501-0500 
taler-merchant-httpd-9368(PNKJNHR074MS930JRY3J54DPP8) INFO Starting merchant DB 
transaction `insert_order'
+2023-02-06T06:54:08.336777-0500 
taler-merchant-httpd-9368(PNKJNHR074MS930JRY3J54DPP8) INFO Notifying clients of 
new order 2 at EN35B9T5
+2023-02-06T06:54:08.336829-0500 
taler-merchant-httpd-9368(PNKJNHR074MS930JRY3J54DPP8) INFO Executing command 
`NOTIFY XT64NZ8GTXRF43Q6AWY42YN2T43473QVKN5PX5DG8KS298D05MRS0, 
'0000000000004005YG3B0HTR00000000''
+2023-02-06T06:54:08.336967-0500 
taler-merchant-httpd-9368(PNKJNHR074MS930JRY3J54DPP8) INFO PG poll job active
+2023-02-06T06:54:08.337017-0500 
taler-merchant-httpd-9368(PNKJNHR074MS930JRY3J54DPP8) INFO PG poll job finishes 
after 0 events
+2023-02-06T06:54:08.337058-0500 
taler-merchant-httpd-9368(PNKJNHR074MS930JRY3J54DPP8) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T06:54:08.345090-0500 
taler-merchant-httpd-9368(PNKJNHR074MS930JRY3J54DPP8) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T06:54:08.345164-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Claiming order at http://localhost:8080/orders/1/claim
+2023-02-06T06:54:08.345579-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO Handling request 
(POST) for URL '/orders/1/claim'
+2023-02-06T06:54:08.345673-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO Starting merchant DB 
transaction `claim order'
+2023-02-06T06:54:08.348412-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO Notifying clients of 
new order 2 at EN35B9T5
+2023-02-06T06:54:08.348468-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO Executing command 
`NOTIFY XT64NZ8GTXRF43Q6AWY42YN2T43473QVKN5PX5DG8KS298D05MRS0, 
'0000000000004005YG3B0HTR00000001''
+2023-02-06T06:54:08.348678-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO PG poll job active
+2023-02-06T06:54:08.348732-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO Received 
notification xt64nz8gtxrf43q6awy42yn2t43473qvkn5px5dg8ks298d05mrs0 with extra 
data `'
+2023-02-06T06:54:08.348784-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO Received 
notification about new order 2
+2023-02-06T06:54:08.348826-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO Waking up client 
0x56532eec2390!
+2023-02-06T06:54:08.348868-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO Adding order 
`(null)' (2) to result set
+2023-02-06T06:54:08.349675-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO Executing PQ command 
`UNLISTEN XT64NZ8GTXRF43Q6AWY42YN2T43473QVKN5PX5DG8KS298D05MRS0'
+2023-02-06T06:54:08.349847-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.349893-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO Committing merchant 
DB transaction claim order
+2023-02-06T06:54:08.356836-0500 
taler-merchant-httpd-9368(96Q8Z0B1FZMYMPNXEN463830VR) INFO Finished handling 
request for `/orders/1/claim' with MHD termination code 0
+2023-02-06T06:54:08.357042-0500 
taler-merchant-httpd-9368(CB5DEGHZMBK0YT7X1A6FTB6SSR) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T06:54:08.357063-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 ERROR 
Order claimed with status 200
+2023-02-06T06:54:08.357552-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.357590-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: post-webhooks-pay-w1
+2023-02-06T06:54:08.358051-0500 
taler-merchant-httpd-9368(077QA6TTAFTK59SRG767JER64R) INFO Handling request 
(POST) for URL '/private/webhooks'
+2023-02-06T06:54:08.358150-0500 
taler-merchant-httpd-9368(077QA6TTAFTK59SRG767JER64R) INFO Starting merchant DB 
transaction `/post webhooks'
+2023-02-06T06:54:08.359629-0500 
taler-merchant-httpd-9368(077QA6TTAFTK59SRG767JER64R) INFO Committing merchant 
DB transaction /post webhooks
+2023-02-06T06:54:08.367267-0500 
taler-merchant-httpd-9368(077QA6TTAFTK59SRG767JER64R) INFO Finished handling 
request for `/private/webhooks' with MHD termination code 0
+2023-02-06T06:54:08.367406-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO POST 
/webhooks completed with response code 204
+2023-02-06T06:54:08.367468-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.367496-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: launch-http-server-for-webhooks
+2023-02-06T06:54:08.367617-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.367651-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: create-proposal-1-idem
+2023-02-06T06:54:08.368131-0500 
taler-merchant-httpd-9368(84DB1FWF24VZ1S63BSEMKDXQN8) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T06:54:08.369881-0500 
taler-merchant-httpd-9368(84DB1FWF24VZ1S63BSEMKDXQN8) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T06:54:08.370054-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.370094-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: create-proposal-1x
+2023-02-06T06:54:08.370577-0500 
taler-merchant-httpd-9368(415Z7N7J34SR0XM2V8D3RHJPT0) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T06:54:08.371970-0500 
taler-merchant-httpd-9368(415Z7N7J34SR0XM2V8D3RHJPT0) INFO Starting merchant DB 
transaction `insert_order'
+2023-02-06T06:54:08.373296-0500 
taler-merchant-httpd-9368(415Z7N7J34SR0XM2V8D3RHJPT0) INFO Notifying clients of 
new order 3 at EN35B9T5
+2023-02-06T06:54:08.373350-0500 
taler-merchant-httpd-9368(415Z7N7J34SR0XM2V8D3RHJPT0) INFO Executing command 
`NOTIFY XT64NZ8GTXRF43Q6AWY42YN2T43473QVKN5PX5DG8KS298D05MRS0, 
'0000000000006005YG3B0HTR00000000''
+2023-02-06T06:54:08.373519-0500 
taler-merchant-httpd-9368(415Z7N7J34SR0XM2V8D3RHJPT0) INFO PG poll job active
+2023-02-06T06:54:08.373568-0500 
taler-merchant-httpd-9368(415Z7N7J34SR0XM2V8D3RHJPT0) INFO PG poll job finishes 
after 0 events
+2023-02-06T06:54:08.373611-0500 
taler-merchant-httpd-9368(415Z7N7J34SR0XM2V8D3RHJPT0) INFO Committing merchant 
DB transaction insert_order
+2023-02-06T06:54:08.378371-0500 
taler-merchant-httpd-9368(415Z7N7J34SR0XM2V8D3RHJPT0) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T06:54:08.378489-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Claiming order at http://localhost:8080/orders/1x/claim
+2023-02-06T06:54:08.378979-0500 
taler-merchant-httpd-9368(XYJ91AMPB2ZD6WVR0NGS26GQV4) INFO Handling request 
(POST) for URL '/orders/1x/claim'
+2023-02-06T06:54:08.379074-0500 
taler-merchant-httpd-9368(XYJ91AMPB2ZD6WVR0NGS26GQV4) INFO Starting merchant DB 
transaction `claim order'
+2023-02-06T06:54:08.380886-0500 
taler-merchant-httpd-9368(XYJ91AMPB2ZD6WVR0NGS26GQV4) INFO Notifying clients of 
new order 3 at EN35B9T5
+2023-02-06T06:54:08.380938-0500 
taler-merchant-httpd-9368(XYJ91AMPB2ZD6WVR0NGS26GQV4) INFO Executing command 
`NOTIFY XT64NZ8GTXRF43Q6AWY42YN2T43473QVKN5PX5DG8KS298D05MRS0, 
'0000000000006005YG3B0HTR00000001''
+2023-02-06T06:54:08.381159-0500 
taler-merchant-httpd-9368(XYJ91AMPB2ZD6WVR0NGS26GQV4) INFO PG poll job active
+2023-02-06T06:54:08.381208-0500 
taler-merchant-httpd-9368(XYJ91AMPB2ZD6WVR0NGS26GQV4) INFO PG poll job finishes 
after 0 events
+2023-02-06T06:54:08.381250-0500 
taler-merchant-httpd-9368(XYJ91AMPB2ZD6WVR0NGS26GQV4) INFO Committing merchant 
DB transaction claim order
+2023-02-06T06:54:08.390203-0500 
taler-merchant-httpd-9368(XYJ91AMPB2ZD6WVR0NGS26GQV4) INFO Finished handling 
request for `/orders/1x/claim' with MHD termination code 0
+2023-02-06T06:54:08.390487-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 ERROR 
Order claimed with status 200
+2023-02-06T06:54:08.390928-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.390964-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: reclaim-1
+2023-02-06T06:54:08.391004-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Claiming order at http://localhost:8080/orders/1/claim
+2023-02-06T06:54:08.391398-0500 
taler-merchant-httpd-9368(9J6R1KZC3F7SHT1FSJCJPRR2RC) INFO Handling request 
(POST) for URL '/orders/1/claim'
+2023-02-06T06:54:08.391492-0500 
taler-merchant-httpd-9368(9J6R1KZC3F7SHT1FSJCJPRR2RC) INFO Starting merchant DB 
transaction `claim order'
+2023-02-06T06:54:08.392018-0500 
taler-merchant-httpd-9368(9J6R1KZC3F7SHT1FSJCJPRR2RC) INFO Rolling back 
merchant DB transaction `claim order'
+2023-02-06T06:54:08.393051-0500 
taler-merchant-httpd-9368(9J6R1KZC3F7SHT1FSJCJPRR2RC) INFO Finished handling 
request for `/orders/1/claim' with MHD termination code 0
+2023-02-06T06:54:08.393316-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 ERROR 
Order claimed with status 200
+2023-02-06T06:54:08.393731-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.393767-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: reclaim-1-bad-nonce
+2023-02-06T06:54:08.393829-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Claiming order at http://localhost:8080/orders/1/claim
+2023-02-06T06:54:08.394199-0500 
taler-merchant-httpd-9368(N1XRF0G9BC6SBHVTCBZ7Y625E8) INFO Handling request 
(POST) for URL '/orders/1/claim'
+2023-02-06T06:54:08.394280-0500 
taler-merchant-httpd-9368(N1XRF0G9BC6SBHVTCBZ7Y625E8) INFO Starting merchant DB 
transaction `claim order'
+2023-02-06T06:54:08.394713-0500 
taler-merchant-httpd-9368(N1XRF0G9BC6SBHVTCBZ7Y625E8) INFO Rolling back 
merchant DB transaction `claim order'
+2023-02-06T06:54:08.395063-0500 
taler-merchant-httpd-9368(N1XRF0G9BC6SBHVTCBZ7Y625E8) INFO Finished handling 
request for `/orders/1/claim' with MHD termination code 0
+2023-02-06T06:54:08.395210-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 ERROR 
Order claimed with status 409
+2023-02-06T06:54:08.395250-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 WARNING 
Proposal lookup failed with HTTP status code 409/2301
+2023-02-06T06:54:08.395295-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.395323-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: reclaim-1x
+2023-02-06T06:54:08.395355-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Claiming order at http://localhost:8080/orders/1x/claim
+2023-02-06T06:54:08.395690-0500 
taler-merchant-httpd-9368(7B9MW0T66KEMNFKCR2XSH97PXR) INFO Handling request 
(POST) for URL '/orders/1x/claim'
+2023-02-06T06:54:08.395781-0500 
taler-merchant-httpd-9368(7B9MW0T66KEMNFKCR2XSH97PXR) INFO Starting merchant DB 
transaction `claim order'
+2023-02-06T06:54:08.396260-0500 
taler-merchant-httpd-9368(7B9MW0T66KEMNFKCR2XSH97PXR) INFO Rolling back 
merchant DB transaction `claim order'
+2023-02-06T06:54:08.397226-0500 
taler-merchant-httpd-9368(7B9MW0T66KEMNFKCR2XSH97PXR) INFO Finished handling 
request for `/orders/1x/claim' with MHD termination code 0
+2023-02-06T06:54:08.397486-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 ERROR 
Order claimed with status 200
+2023-02-06T06:54:08.397883-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.397918-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: create-proposal-1-pre-exists
+2023-02-06T06:54:08.398397-0500 
taler-merchant-httpd-9368(XFNBF86TR6JXNP5KQNM4QWB95M) INFO Handling request 
(POST) for URL '/private/orders'
+2023-02-06T06:54:08.400229-0500 
taler-merchant-httpd-9368(XFNBF86TR6JXNP5KQNM4QWB95M) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T06:54:08.400414-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.400453-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: poll-orders-1-conclude
+2023-02-06T06:54:08.400502-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.400530-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: get-orders-1
+2023-02-06T06:54:08.400848-0500 
taler-merchant-httpd-9368(E7NNW1GGVZ9875YS37KWQQ8HG4) INFO Handling request 
(GET) for URL '/private/orders'
+2023-02-06T06:54:08.401874-0500 
taler-merchant-httpd-9368(E7NNW1GGVZ9875YS37KWQQ8HG4) INFO Adding order `1x' 
(3) to result set
+2023-02-06T06:54:08.402681-0500 
taler-merchant-httpd-9368(E7NNW1GGVZ9875YS37KWQQ8HG4) INFO Adding order `1' (2) 
to result set
+2023-02-06T06:54:08.403604-0500 
taler-merchant-httpd-9368(E7NNW1GGVZ9875YS37KWQQ8HG4) INFO Finished handling 
request for `/private/orders' with MHD termination code 0
+2023-02-06T06:54:08.403826-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.403867-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: get-order-wallet-1
+2023-02-06T06:54:08.403916-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Checking order status at 
http://localhost:8080/orders/1?h_contract=PNBKRPCBAGG49PY1A45R4QMZ1BCZ76BGQ7NHS8EH9KHA5NTXT149HQXT0FXHHQ9V11ZPY1SFVNCS6NDH01B5BGQKQRAN0P0K8V5T8ZG
+2023-02-06T06:54:08.404246-0500 
taler-merchant-httpd-9368(4WAKCMDADAP7SE8CJZC26MEKS0) INFO Handling request 
(GET) for URL '/orders/1'
+2023-02-06T06:54:08.405417-0500 
taler-merchant-httpd-9368(4WAKCMDADAP7SE8CJZC26MEKS0) INFO Order claimed but 
unpaid, sending pay request for order 1
+2023-02-06T06:54:08.405468-0500 
taler-merchant-httpd-9368(4WAKCMDADAP7SE8CJZC26MEKS0) INFO Sending payment 
request
+2023-02-06T06:54:08.405626-0500 
taler-merchant-httpd-9368(4WAKCMDADAP7SE8CJZC26MEKS0) INFO Finished handling 
request for `/orders/1' with MHD termination code 0
+2023-02-06T06:54:08.405790-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.405830-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: get-order-merchant-1
+2023-02-06T06:54:08.405869-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Getting order status from http://localhost:8080/private/orders/1?transfer=YES
+2023-02-06T06:54:08.406177-0500 
taler-merchant-httpd-9368(WY7ER0PZ2KKX5WQGQX2VRYMDB0) INFO Handling request 
(GET) for URL '/private/orders/1'
+2023-02-06T06:54:08.407895-0500 
taler-merchant-httpd-9368(WY7ER0PZ2KKX5WQGQX2VRYMDB0) INFO Finished handling 
request for `/private/orders/1' with MHD termination code 0
+2023-02-06T06:54:08.408166-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO GET 
/private/orders/$ID completed with status 200
+2023-02-06T06:54:08.408231-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.408262-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: poll-order-wallet-start-1
+2023-02-06T06:54:08.408310-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Checking order status at 
http://localhost:8080/orders/1?h_contract=PNBKRPCBAGG49PY1A45R4QMZ1BCZ76BGQ7NHS8EH9KHA5NTXT149HQXT0FXHHQ9V11ZPY1SFVNCS6NDH01B5BGQKQRAN0P0K8V5T8ZG&timeout_ms=60000
+2023-02-06T06:54:08.408528-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.408564-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: poll-order-wallet-start-1x
+2023-02-06T06:54:08.408607-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Checking order status at 
http://localhost:8080/orders/1x?h_contract=A4CJA8XFWP5NEMQQ88ZY9G58ETQG7RE4N0YVZRBNG5K6P2JKMV2E3GPAHEHTX3A8PXRRHSKHXG7H390GFA9DSQD7XCQQ7G9WM7ZFZ8G&session_id=session-0&timeout_ms=2000
+2023-02-06T06:54:08.408648-0500 
taler-merchant-httpd-9368(EC44VFAYAQ8QDY62DE8GB4E9G4) INFO Handling request 
(GET) for URL '/orders/1'
+2023-02-06T06:54:08.408735-0500 
taler-merchant-httpd-9368(EC44VFAYAQ8QDY62DE8GB4E9G4) INFO Subscribing to 
payments on 1
+2023-02-06T06:54:08.408784-0500 
taler-merchant-httpd-9368(EC44VFAYAQ8QDY62DE8GB4E9G4) INFO Executing PQ command 
`LISTEN XQ97S7AAVW2RAVC1JW0AQHDR9G68K5ZVASCYYH4DC0FYXMCKZGVSG'
+2023-02-06T06:54:08.408871-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.408918-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: poll-order-merchant-1-start
+2023-02-06T06:54:08.408990-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Getting order status from 
http://localhost:8080/private/orders/1?transfer=NO&timeout_ms=60000
+2023-02-06T06:54:08.409281-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.409329-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: deposit-simple
+2023-02-06T06:54:08.410074-0500 
taler-merchant-httpd-9368(EC44VFAYAQ8QDY62DE8GB4E9G4) INFO Order claimed but 
unpaid, sending pay request for order 1
+2023-02-06T06:54:08.410117-0500 
taler-merchant-httpd-9368(EC44VFAYAQ8QDY62DE8GB4E9G4) INFO Suspending GET 
/orders/1
+2023-02-06T06:54:08.410306-0500 
taler-merchant-httpd-9368(CXDKFV0M8MKF96NS2VNETHC4VG) INFO Handling request 
(GET) for URL '/orders/1x'
+2023-02-06T06:54:08.410385-0500 
taler-merchant-httpd-9368(CXDKFV0M8MKF96NS2VNETHC4VG) INFO Subscribing to 
payments on 1x
+2023-02-06T06:54:08.410432-0500 
taler-merchant-httpd-9368(CXDKFV0M8MKF96NS2VNETHC4VG) INFO Executing PQ command 
`LISTEN X2M7CTAGEVYP0V08VR7ST7XCGVKD4TQT4HPPC7BCRZGKH44RRE4Q0'
+2023-02-06T06:54:08.411780-0500 
taler-merchant-httpd-9368(CXDKFV0M8MKF96NS2VNETHC4VG) INFO Sending pay request 
for order 1x (already paid: (null))
+2023-02-06T06:54:08.411826-0500 
taler-merchant-httpd-9368(CXDKFV0M8MKF96NS2VNETHC4VG) INFO Suspending GET 
/orders/1x
+2023-02-06T06:54:08.411924-0500 
taler-merchant-httpd-9368(XXGDA5VM8JZHNA9A2425YQA30C) INFO Handling request 
(GET) for URL '/private/orders/1'
+2023-02-06T06:54:08.411970-0500 
taler-merchant-httpd-9368(XXGDA5VM8JZHNA9A2425YQA30C) INFO Subscribing to 
payment triggers for 0x56532ee67bd0
+2023-02-06T06:54:08.413366-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Handling request 
(POST) for URL '/orders/1/pay'
+2023-02-06T06:54:08.414083-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Handling payment for 
order `1' with contract hash `PNBKRPCB'
+2023-02-06T06:54:08.414152-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Starting merchant DB 
transaction `run pay'
+2023-02-06T06:54:08.415756-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Rolling back 
merchant DB transaction `run pay'
+2023-02-06T06:54:08.416021-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Do not have required 
wire data. Will re-request /wire now
+2023-02-06T06:54:08.416080-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Missing wire fees 
for exchange http://localhost:8081/ and method x-taler-bank
+2023-02-06T06:54:08.416111-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Initiating /wire 
download
+2023-02-06T06:54:08.416354-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:08.416454-0500 
taler-exchange-httpd-9377(WA975EV7J90C7QPAQDR46YPJXG) INFO Handling request 
(GET) for URL '/wire'
+2023-02-06T06:54:08.475975-0500 
taler-exchange-httpd-9377(WA975EV7J90C7QPAQDR46YPJXG) INFO Setting 'Expires' 
header for '/wire' to 'Mon, 01 Jan 2024 00:00:00 GMT'
+2023-02-06T06:54:08.476128-0500 
taler-exchange-httpd-9377(WA975EV7J90C7QPAQDR46YPJXG) INFO Request for `/wire' 
completed (0)
+2023-02-06T06:54:08.476642-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Received /wire 
response
+2023-02-06T06:54:08.476705-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Starting merchant DB 
transaction `store wire fee'
+2023-02-06T06:54:08.476923-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Storing wire fee for 
HGYF3P1M starting at Sat Dec 31 19:00:00 2022 of EUR:0.01
+2023-02-06T06:54:08.477796-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Committing merchant 
DB transaction store wire fee
+2023-02-06T06:54:08.489525-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Processing payment 
with exchange http://localhost:8081/
+2023-02-06T06:54:08.489581-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Initiating batch 
deposit with 1 coins
+2023-02-06T06:54:08.491071-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:08.491212-0500 
taler-exchange-httpd-9377(M44BBF2CXRXV6KMWVNHJFWGBH4) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T06:54:08.491262-0500 
taler-exchange-httpd-9377(M44BBF2CXRXV6KMWVNHJFWGBH4) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T06:54:08.491299-0500 
taler-exchange-httpd-9377(M44BBF2CXRXV6KMWVNHJFWGBH4) INFO Handling request 
(POST) for URL '/batch-deposit'
+2023-02-06T06:54:08.493023-0500 
taler-exchange-httpd-9377(M44BBF2CXRXV6KMWVNHJFWGBH4) INFO Starting transaction 
`execute batch deposit'
+2023-02-06T06:54:08.511932-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of type 17 and length 104
+2023-02-06T06:54:08.511996-0500 taler-exchange-secmod-eddsa-9374 INFO Sending 
message of length 104
+2023-02-06T06:54:08.512285-0500 
taler-exchange-httpd-9377(M44BBF2CXRXV6KMWVNHJFWGBH4) INFO Request for 
`/batch-deposit' completed (0)
+2023-02-06T06:54:08.512687-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Batch deposit 
completed with status 200
+2023-02-06T06:54:08.512740-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Starting merchant DB 
transaction `batch-deposit-insert-confirmation'
+2023-02-06T06:54:08.515044-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Committing merchant 
DB transaction batch-deposit-insert-confirmation
+2023-02-06T06:54:08.523329-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO The exchange 
`http://localhost:8081/' is ready
+2023-02-06T06:54:08.523391-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Starting merchant DB 
transaction `run pay'
+2023-02-06T06:54:08.524706-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Subtracting total 
refunds from paid amount: EUR:0
+2023-02-06T06:54:08.524757-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Order `1' (PNBKRPCB) 
was fully paid
+2023-02-06T06:54:08.526774-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Notifying clients of 
new order 2 at EN35B9T5
+2023-02-06T06:54:08.526828-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Executing command 
`NOTIFY XT64NZ8GTXRF43Q6AWY42YN2T43473QVKN5PX5DG8KS298D05MRS0, 
'0000000000004005YG3B0HTR00000003''
+2023-02-06T06:54:08.527034-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO PG poll job active
+2023-02-06T06:54:08.527086-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO PG poll job finishes 
after 0 events
+2023-02-06T06:54:08.528508-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Executing command 
`NOTIFY XXJWF6C1DCS1255RJH7GQ1EK16J8DMRSQ6K9EDKNKCP7HRVWAJPKG, '''
+2023-02-06T06:54:08.528733-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO PG poll job active
+2023-02-06T06:54:08.528780-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO PG poll job finishes 
after 0 events
+2023-02-06T06:54:08.528816-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Committing merchant 
DB transaction run pay
+2023-02-06T06:54:08.533985-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Notifying clients 
about payment of order 1
+2023-02-06T06:54:08.534041-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Executing command 
`NOTIFY XQ97S7AAVW2RAVC1JW0AQHDR9G68K5ZVASCYYH4DC0FYXMCKZGVSG, '''
+2023-02-06T06:54:08.534291-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO PG poll job active
+2023-02-06T06:54:08.534346-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Received 
notification xq97s7aavw2ravc1jw0aqhdr9g68k5zvascyyh4dc0fyxmckzgvsg with extra 
data `'
+2023-02-06T06:54:08.534380-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Resuming request 
0x56532ee67bd0 by trigger
+2023-02-06T06:54:08.538491-0500 
taler-merchant-httpd-9368(EC44VFAYAQ8QDY62DE8GB4E9G4) INFO Received event for 1 
with argument ``
+2023-02-06T06:54:08.538547-0500 
taler-merchant-httpd-9368(EC44VFAYAQ8QDY62DE8GB4E9G4) INFO Resuming (1/0) by 
event with argument ``
+2023-02-06T06:54:08.538612-0500 
taler-merchant-httpd-9368(XXGDA5VM8JZHNA9A2425YQA30C) INFO Finished handling 
request for `/private/orders/1' with MHD termination code 0
+2023-02-06T06:54:08.538772-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO GET 
/private/orders/$ID finished with status 200.
+2023-02-06T06:54:08.540771-0500 
taler-merchant-httpd-9368(XXGDA5VM8JZHNA9A2425YQA30C) INFO PG poll job finishes 
after 1 events
+2023-02-06T06:54:08.540826-0500 
taler-merchant-httpd-9368(XXGDA5VM8JZHNA9A2425YQA30C) INFO Notifying clients 
about session change to session-0 for https://example.com
+2023-02-06T06:54:08.540856-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO GET 
/orders/$ID finished with status 200.
+2023-02-06T06:54:08.540880-0500 
taler-merchant-httpd-9368(XXGDA5VM8JZHNA9A2425YQA30C) INFO Executing command 
`NOTIFY XGQMR6ZQZNB3C6RBFDR1XCANSQ6CAF3KFE5GT266BZMHDX6ZDH440, '''
+2023-02-06T06:54:08.541065-0500 
taler-merchant-httpd-9368(XXGDA5VM8JZHNA9A2425YQA30C) INFO PG poll job active
+2023-02-06T06:54:08.541112-0500 
taler-merchant-httpd-9368(XXGDA5VM8JZHNA9A2425YQA30C) INFO PG poll job finishes 
after 0 events
+2023-02-06T06:54:08.541345-0500 
taler-merchant-httpd-9368(EC44VFAYAQ8QDY62DE8GB4E9G4) INFO Finished handling 
request for `/orders/1' with MHD termination code 0
+2023-02-06T06:54:08.541391-0500 
taler-merchant-httpd-9368(EC44VFAYAQ8QDY62DE8GB4E9G4) INFO Executing PQ command 
`UNLISTEN XQ97S7AAVW2RAVC1JW0AQHDR9G68K5ZVASCYYH4DC0FYXMCKZGVSG'
+2023-02-06T06:54:08.541656-0500 
taler-merchant-httpd-9368(PT5D8GA2ZSQ4N8N4G2PGT0EK4G) INFO Finished handling 
request for `/orders/1/pay' with MHD termination code 0
+2023-02-06T06:54:08.541693-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO /pay 
completed with response code 200
+2023-02-06T06:54:08.542154-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.542199-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: poll-order-merchant-1-conclude
+2023-02-06T06:54:08.542233-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Waiting on GET /private/orders/$ID of poll-order-merchant-1-start (finished)
+2023-02-06T06:54:08.542291-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.542331-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: poll-order-1-conclude
+2023-02-06T06:54:08.542370-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Waiting on GET /orders/$ID of poll-order-wallet-start-1 (finished)
+2023-02-06T06:54:08.542420-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running command `pay'
+2023-02-06T06:54:08.542472-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Running batched command: pending-webhooks-pay-w1
+2023-02-06T06:54:08.542646-0500 taler-exchange-httpd-9377 INFO Handling new 
request
+2023-02-06T06:54:08.542814-0500 
taler-exchange-httpd-9377(J6SM5063W21CT04XSX690Q6X40) INFO Handling request 
(GET) for URL 
'/deposits/1Z8GMVRE03XA7MR433TFHM37N0R3NN9D0907B0BPRMSQJYRZYW1138TX4EGM9T6N96AYKKWS2JTNS0PQNJNS0H8WY9BEZ93YW3X9A30/MH6TBHCQESZR3X0S89C2Z58KNN2NDKBR3FNGBVZW9ZWMGSZV6VCG/PNBKRPCBAGG49PY1A45R4QMZ1BCZ76BGQ7NHS8EH9KHA5NTXT149HQXT0FXHHQ9V11ZPY1SFVNCS6NDH01B5BGQKQRAN0P0K8V5T8ZG/YZZPB7C6B5NMABQVVPZRDWT5CS2W9FF0N46XJV8T8RXTC8AH9MQG'
+2023-02-06T06:54:08.543286-0500 
taler-exchange-httpd-9377(J6SM5063W21CT04XSX690Q6X40) INFO Starting transaction 
`handle deposits GET'
+==9432== Memcheck, a memory error detector
+==9432== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
+==9432== Using Valgrind-3.16.1 and LibVEX; rerun with -h for copyright info
+==9432== Command: taler-merchant-webhook -c test_merchant_api-cs.conf -t -L 
DEBUG
+==9432== 
+2023-02-06T06:54:09.000359-0500 
taler-exchange-httpd-9377(J6SM5063W21CT04XSX690Q6X40) INFO Request for 
`/deposits/1Z8GMVRE03XA7MR433TFHM37N0R3NN9D0907B0BPRMSQJYRZYW1138TX4EGM9T6N96AYKKWS2JTNS0PQNJNS0H8WY9BEZ93YW3X9A30/MH6TBHCQESZR3X0S89C2Z58KNN2NDKBR3FNGBVZW9ZWMGSZV6VCG/PNBKRPCBAGG49PY1A45R4QMZ1BCZ76BGQ7NHS8EH9KHA5NTXT149HQXT0FXHHQ9V11ZPY1SFVNCS6NDH01B5BGQKQRAN0P0K8V5T8ZG/YZZPB7C6B5NMABQVVPZRDWT5CS2W9FF0N46XJV8T8RXTC8AH9MQG'
 completed (0)
+2023-02-06T06:54:09.916743-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:09.937904-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:09.978590-0500 taler-merchant-httpd-9368 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:09.998524-0500 taler-merchant-httpd-9368 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:10.411199-0500 
taler-merchant-httpd-9368(CXDKFV0M8MKF96NS2VNETHC4VG) INFO Received event for 
1x with argument ``
+2023-02-06T06:54:10.411258-0500 
taler-merchant-httpd-9368(CXDKFV0M8MKF96NS2VNETHC4VG) INFO Resuming (0/0) by 
event with argument ``
+2023-02-06T06:54:10.412285-0500 
taler-merchant-httpd-9368(CXDKFV0M8MKF96NS2VNETHC4VG) INFO Sending pay request 
for order 1x (already paid: 1)
+2023-02-06T06:54:10.412319-0500 
taler-merchant-httpd-9368(CXDKFV0M8MKF96NS2VNETHC4VG) INFO Sending payment 
request
+2023-02-06T06:54:10.412455-0500 
taler-merchant-httpd-9368(CXDKFV0M8MKF96NS2VNETHC4VG) INFO Finished handling 
request for `/orders/1x' with MHD termination code 0
+2023-02-06T06:54:10.412489-0500 
taler-merchant-httpd-9368(CXDKFV0M8MKF96NS2VNETHC4VG) INFO Executing PQ command 
`UNLISTEN X2M7CTAGEVYP0V08VR7ST7XCGVKD4TQT4HPPC7BCRZGKH44RRE4Q0'
+2023-02-06T06:54:10.412600-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO GET 
/orders/$ID finished with status 402.
+2023-02-06T06:54:10.777476-0500 taler-merchant-webhook-9432 INFO Change in PQ 
event FD to -1
+2023-02-06T06:54:10.824140-0500 taler-merchant-webhook-9432 INFO New poll FD 
is -1
+2023-02-06T06:54:11.048516-0500 taler-merchant-webhook-9432 INFO Change in PQ 
event FD to 10
+2023-02-06T06:54:11.050828-0500 taler-merchant-webhook-9432 INFO New poll FD 
is 10
+2023-02-06T06:54:11.525387-0500 taler-merchant-webhook-9432 INFO Webhook 1 
returned with status 200
+2023-02-06T06:54:11.556546-0500 taler-merchant-webhook-9432 INFO Delete 
returned: 1
+2023-02-06T06:54:11.938623-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:12.000215-0500 taler-merchant-httpd-9368 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:12.085504-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:12.115432-0500 taler-merchant-httpd-9368 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:14.087702-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:14.117546-0500 taler-merchant-httpd-9368 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:14.184774-0500 taler-merchant-httpd-9368 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:14.184812-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:16.186950-0500 taler-merchant-httpd-9368 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:16.186959-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:16.274794-0500 taler-merchant-httpd-9368 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:16.274847-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:18.276998-0500 taler-merchant-httpd-9368 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:18.277005-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:18.539694-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:19.102622-0500 taler-merchant-httpd-9368 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:20.541846-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:20.553550-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:21.102826-0500 taler-merchant-httpd-9368 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:21.114846-0500 taler-merchant-httpd-9368 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:22.555676-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:22.567988-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:23.117034-0500 taler-merchant-httpd-9368 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:23.132935-0500 taler-merchant-httpd-9368 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:24.570138-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:24.582633-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:25.135128-0500 taler-merchant-httpd-9368 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:25.147607-0500 taler-merchant-httpd-9368 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:26.584776-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:26.598071-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:27.149812-0500 taler-merchant-httpd-9368 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:27.161336-0500 taler-merchant-httpd-9368 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:28.600223-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:28.612181-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:29.163542-0500 taler-merchant-httpd-9368 INFO Requesting 
auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:29.175969-0500 taler-merchant-httpd-9368 INFO Received 
version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:30.614325-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Requesting auditor version with URL `http://the.auditor/version'.
+2023-02-06T06:54:30.626673-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Received version from URL `http://the.auditor/' with status 0.
+2023-02-06T06:54:30.936566-0500 taler-merchant-httpd-9368 INFO Executing PQ 
command `UNLISTEN XN0RW6KT8Y9MK75YM85SC7GTA6SC5W91FXWDQP0ZB42GY3E52DZH0'
+2023-02-06T06:54:30.936717-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Executing shutdown at `pay'
+2023-02-06T06:54:30.937071-0500 taler-exchange-httpd-9377 INFO Executing PQ 
command `UNLISTEN X6R9RKN23RNHRPK11GT4NDJZKAK8DX1V4AWCTN6RQV5MKDT818K4G'
+2023-02-06T06:54:30.937175-0500 taler-merchant-httpd-9368 INFO Stopping PQ 
event scheduler job
+2023-02-06T06:54:30.937408-0500 taler-merchant-httpd-9368 INFO Disconnecting 
from auditor at URL `http://the.auditor/'.
+2023-02-06T06:54:30.938126-0500 taler-exchange-httpd-9377 INFO Executing PQ 
command `UNLISTEN XRE2709K6TYDBVARD9Y5SCZY7VHE4D5DKF0R8DHQ4X5T13E8X2X60'
+2023-02-06T06:54:30.938281-0500 taler-exchange-httpd-9377 INFO Stopping PQ 
event scheduler job
+2023-02-06T06:54:30.941753-0500 
/home/priscilla/merchant/src/testing/.libs/test_merchant_api_cs-9223 INFO 
Disconnecting from auditor at URL `http://the.auditor/'.
diff --git a/src/testing/test_merchant_api.c b/src/testing/test_merchant_api.c
index 03e03b1a..bf4c13cb 100644
--- a/src/testing/test_merchant_api.c
+++ b/src/testing/test_merchant_api.c
@@ -687,10 +687,10 @@ run (void *cls,
                                             GNUNET_TIME_UNIT_ZERO_TS,
                                             GNUNET_TIME_UNIT_FOREVER_TS,
                                             "EUR:5.0"),
-    /*TALER_TESTING_cmd_merchant_delete_webhook ("post-webhooks-pay-w1",
+    TALER_TESTING_cmd_merchant_delete_webhook ("post-webhooks-pay-w1",
                                                merchant_url,
                                                "webhook-pay-1",
-                                               MHD_HTTP_NO_CONTENT),*/
+                                               MHD_HTTP_NO_CONTENT),
     TALER_TESTING_cmd_check_bank_empty ("check_bank_empty-2"),
     TALER_TESTING_cmd_end ()
   };
@@ -1458,7 +1458,7 @@ run (void *cls,
       MHD_HTTP_NOT_FOUND),
     TALER_TESTING_cmd_end ()
   };
-  /*
+  
   struct TALER_TESTING_Command webhooks[] = {
     TALER_TESTING_cmd_merchant_get_webhooks ("get-webhooks-empty",
                                              merchant_url,
@@ -1532,7 +1532,7 @@ run (void *cls,
                                                MHD_HTTP_NO_CONTENT),
     TALER_TESTING_cmd_end ()
   };
-  */
+
 
   struct TALER_TESTING_Command commands[] = {
     /* general setup */
@@ -1886,8 +1886,8 @@ run (void *cls,
                              auth),
     TALER_TESTING_cmd_batch ("templates",
                              templates),
-    /*  TALER_TESTING_cmd_batch ("webhooks",
-        webhooks),*/
+    TALER_TESTING_cmd_batch ("webhooks",
+                             webhooks),
     /**
      * End the suite.
      */
diff --git a/src/testing/testing_api_cmd_testserver.c 
b/src/testing/testing_api_cmd_testserver.c
index c480e8db..7e0b0a4b 100644
--- a/src/testing/testing_api_cmd_testserver.c
+++ b/src/testing/testing_api_cmd_testserver.c
@@ -88,8 +88,6 @@ handle_post (void *cls,
              uint64_t off,
              size_t size)
 {
-  struct RequestCtx *rc = cls;
-
   (void) kind;
   (void) filename;
   (void) content_type;
@@ -227,8 +225,8 @@ cleanup (void *cls,
  */
 static void
 testserver_run (void *cls,
-           const struct TALER_TESTING_Command *cmd,
-           struct TALER_TESTING_Interpreter *is)
+                const struct TALER_TESTING_Command *cmd,
+                struct TALER_TESTING_Interpreter *is)
 {
   struct TestserverState *ser = cls;
 
@@ -265,26 +263,7 @@ testserver_cleanup (void *cls,
   GNUNET_free (ser);
 }
 
-static int
-traits_testserver (void *cls,
-                   const void **ret,
-                   const char *trait,
-                   unsigned int index)
-{
-  struct TestserverState *ser = cls;
-  struct TALER_TESTING_Trait traits[] = {
-    TALER_TESTING_make_trait_url (&ser->url),
-    TALER_TESTING_make_trait_http_method (&ser->http_method),
-    TALER_TESTING_make_trait_header_template (&ser->header),
-    TALER_TESTING_make_trait_body_template (&ser->body),
-    TALER_TESTING_trait_end (),
-  };
 
-  return TALER_TESTING_get_trait (traits,
-                                  ret,
-                                  trait,
-                                  index);
-}
 
 /**
  * This function is used to start the web server.
@@ -312,6 +291,28 @@ TALER_TESTING_cmd_testserver (const char *label,
   }
 }
 
+
+static int
+traits_testserver (void *cls,
+                   const void **ret,
+                   const char *trait,
+                   unsigned int index)
+{
+  struct TestserverState *ser = cls;
+  struct TALER_TESTING_Trait traits[] = {
+    TALER_TESTING_make_trait_url (&ser->url),
+    TALER_TESTING_make_trait_http_method (&ser->http_method),
+    TALER_TESTING_make_trait_header_template (&ser->header),
+    TALER_TESTING_make_trait_body_template (&ser->body),
+    TALER_TESTING_trait_end (),
+  };
+
+  return TALER_TESTING_get_trait (traits,
+                                  ret,
+                                  trait,
+                                  index);
+}
+
 /**
  * This function is used to check the web server
  *
@@ -342,6 +343,8 @@ TALER_TESTING_cmd_checkserver (const char *label,
     struct TALER_TESTING_Command cmd= {
       .cls = ser,
       .label = label,
+      .run = &testserver_run,
+      .cleanup = &testserver_cleanup,
       .traits = &traits_testserver
     };
 
diff --git a/src/testing/vgcore.16090 b/src/testing/vgcore.16090
new file mode 100644
index 00000000..91e4bef3
Binary files /dev/null and b/src/testing/vgcore.16090 differ

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]