commit ea57a95ba3052bf0d2f98a0aa53e99d636be7ce2 parent 385b3e77dfa1b6bbaee5d0ec9da9bcbd69e91b70 Author: Florian Dold <florian.dold@gmail.com> Date: Fri, 1 Nov 2019 13:52:15 +0100 keycheck: print denom pub hash Diffstat:
| M | src/exchange-tools/taler-exchange-keycheck.c | | | 5 | +++-- |
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/exchange-tools/taler-exchange-keycheck.c b/src/exchange-tools/taler-exchange-keycheck.c @@ -180,8 +180,9 @@ denomkeys_iter (void *cls, alias); return GNUNET_SYSERR; } - printf ("Denomination key `%s' is valid\n", - alias); + printf ("Denomination key `%s' (%s) is valid\n", + alias, + GNUNET_h2s (&hc)); return GNUNET_OK; }