diff options
Diffstat (limited to 'src/testing')
-rw-r--r-- | src/testing/testing_api_loop.c | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/src/testing/testing_api_loop.c b/src/testing/testing_api_loop.c index 5f30f71e9..1053e6f78 100644 --- a/src/testing/testing_api_loop.c +++ b/src/testing/testing_api_loop.c @@ -127,24 +127,9 @@ TALER_TESTING_run_with_fakebank (struct TALER_TESTING_Interpreter *is, char *currency; if (GNUNET_OK != - GNUNET_CONFIGURATION_get_value_string (is->cfg, - "taler", - "CURRENCY", - ¤cy)) - { - GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, - "taler", - "CURRENCY"); - is->result = GNUNET_SYSERR; - return; - } - if (strlen (currency) >= TALER_CURRENCY_LEN) + TALER_config_get_currency (is->cfg, + ¤cy)) { - GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR, - "taler", - "CURRENCY", - "Value is too long"); - GNUNET_free (currency); is->result = GNUNET_SYSERR; return; } |