diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-04-23 20:50:27 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-04-23 20:50:27 +0200 |
commit | 345c141bad275828b35a4299a44e9d357998d6a4 (patch) | |
tree | bab53198242b73857a5fac295e79b5eb586b4d13 /src/exchange/taler-exchange-httpd_keys.c | |
parent | b7a4fd401e0a90e309b1be66714b2a0c932f2813 (diff) |
-work on p2p payments
Diffstat (limited to 'src/exchange/taler-exchange-httpd_keys.c')
-rw-r--r-- | src/exchange/taler-exchange-httpd_keys.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/exchange/taler-exchange-httpd_keys.c b/src/exchange/taler-exchange-httpd_keys.c index e0ca24a6..7aff0903 100644 --- a/src/exchange/taler-exchange-httpd_keys.c +++ b/src/exchange/taler-exchange-httpd_keys.c @@ -2257,6 +2257,9 @@ global_fee_info_cb ( struct TEH_KeyStateHandle *ksh = cls; struct TEH_GlobalFee *gf; + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + "Found global fees with %u purses\n", + purse_account_limit); gf = GNUNET_new (struct TEH_GlobalFee); gf->start_date = start_date; gf->end_date = end_date; @@ -2343,6 +2346,9 @@ build_key_state (struct HelperState *hs, qs = TEH_plugin->get_global_fees (TEH_plugin->cls, &global_fee_info_cb, ksh); + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + "Loading global fees from DB: %d\n", + qs); if (qs < 0) { GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR != qs); |