exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 1678b71d854a3e41628b20407166381c0092d006
parent bd174f35a291ee479846d7ba89b1363acd92df74
Author: Christian Grothoff <grothoff@gnunet.org>
Date:   Sat,  2 Aug 2025 10:45:59 +0200

improve error message (fixes #10220)

Diffstat:
Msrc/util/secmod_cs.c | 3++-
Msrc/util/secmod_rsa.c | 3++-
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/util/secmod_cs.c b/src/util/secmod_cs.c @@ -2241,7 +2241,8 @@ TALER_SECMOD_cs_run (void *cls, if (NULL == denom_head) { GNUNET_log (GNUNET_ERROR_TYPE_WARNING, - "No CS denominations configured\n"); + "No CS denominations configured. Make sure section names start with `%s' if you are using CS!\n", + opt->section); TES_wake_clients (); return; } diff --git a/src/util/secmod_rsa.c b/src/util/secmod_rsa.c @@ -2037,7 +2037,8 @@ TALER_SECMOD_rsa_run (void *cls, if (NULL == denom_head) { GNUNET_log (GNUNET_ERROR_TYPE_WARNING, - "No RSA denominations configured\n"); + "No RSA denominations configured. Make sure section names start with `%s' if you are using RSA!\n", + opt->section); TES_wake_clients (); return; }