summaryrefslogtreecommitdiff
path: root/src/exchange
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-05-19 02:23:57 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-05 16:50:12 +0200
commitaf28c9b449b145fd365d416f8ba8cf6fdab6bfcf (patch)
tree1887fc33c47093671667453c1d990a8a15442b55 /src/exchange
parent9ed9c018788dd7751dcc306a24615e76e65bec48 (diff)
downloadexchange-af28c9b449b145fd365d416f8ba8cf6fdab6bfcf.tar.gz
exchange-af28c9b449b145fd365d416f8ba8cf6fdab6bfcf.tar.bz2
exchange-af28c9b449b145fd365d416f8ba8cf6fdab6bfcf.zip
fix auditor drop
Diffstat (limited to 'src/exchange')
-rw-r--r--src/exchange/taler-exchange-httpd_keystate.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/exchange/taler-exchange-httpd_keystate.c b/src/exchange/taler-exchange-httpd_keystate.c
index c14b85d9b..fbb5da356 100644
--- a/src/exchange/taler-exchange-httpd_keystate.c
+++ b/src/exchange/taler-exchange-httpd_keystate.c
@@ -801,7 +801,7 @@ reload_keys_denom_iter (void *cls,
handle_signal (SIGTERM);
return GNUNET_SYSERR;
}
-
+ GNUNET_assert (NULL != dki->denom_priv.rsa_private_key);
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"Adding denomination key `%s' (%s) to active set\n",
alias,
@@ -1660,6 +1660,9 @@ reload_public_denoms_cb (
GNUNET_h2s (&issue->properties.denom_hash));
return;
}
+ GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+ "Loaded denomination key %s from DB, no private key (hopefully revoked!)\n",
+ GNUNET_h2s (&issue->properties.denom_hash));
/* we can assert here as we checked for duplicates just above */
GNUNET_assert (GNUNET_OK == ret);
}