exchange

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

commit e7a9a2911cf0e5ddcf8b42a21da57b7096ece0d0
parent 12e7f405645a69e79f046313df97273eed2893ee
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 30 Jul 2021 18:02:29 +0200

-add logic to purge SECM_TOFU_FILE when purging secmod KEY_DIRS

Diffstat:
Msrc/testing/testing_api_helpers_exchange.c | 23+++++++++++++++++++++++
1 file changed, 23 insertions(+), 0 deletions(-)

diff --git a/src/testing/testing_api_helpers_exchange.c b/src/testing/testing_api_helpers_exchange.c @@ -78,6 +78,29 @@ int TALER_TESTING_cleanup_files_cfg (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg) { + char *dir; + + if (GNUNET_OK != + GNUNET_CONFIGURATION_get_value_filename (cfg, + "exchange-offline", + "SECM_TOFU_FILE", + &dir)) + { + GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, + "exchange-offline", + "SECM_TOFU_FILE"); + return GNUNET_SYSERR; + } + if ( (0 != unlink (dir)) && + (ENOENT != errno) ) + { + GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, + "unlink", + dir); + GNUNET_free (dir); + return GNUNET_SYSERR; + } + GNUNET_free (dir); if (GNUNET_OK != remove_dir (cfg, "taler-exchange-secmod-eddsa",