diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-03-15 20:08:38 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-03-15 20:08:38 +0100 |
commit | 4322bbf2f1722b4c53114901768772dabdb7e822 (patch) | |
tree | e2193282c2d179f2d3bdf32eb7aca7a6ba161f25 /src/benchmark | |
parent | d7cfb11fc6a171ece9c233d67ec849ac391bc818 (diff) |
move common logic to parse currency into libtalerutil
Diffstat (limited to 'src/benchmark')
-rw-r--r-- | src/benchmark/taler-exchange-benchmark.c | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/src/benchmark/taler-exchange-benchmark.c b/src/benchmark/taler-exchange-benchmark.c index 3ea2b0bba..b1f2bc578 100644 --- a/src/benchmark/taler-exchange-benchmark.c +++ b/src/benchmark/taler-exchange-benchmark.c @@ -831,25 +831,9 @@ main (int argc, return BAD_CONFIG_FILE; } if (GNUNET_OK != - GNUNET_CONFIGURATION_get_value_string (cfg, - "taler", - "currency", - ¤cy)) - { - GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, - "taler", - "currency"); - GNUNET_CONFIGURATION_destroy (cfg); - GNUNET_free (cfg_filename); - return BAD_CONFIG_FILE; - } - - if (strlen (currency) >= TALER_CURRENCY_LEN) + TALER_config_get_currency (cfg, + ¤cy)) { - GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR, - "taler", - "CURRENCY", - "Value is too long"); GNUNET_CONFIGURATION_destroy (cfg); GNUNET_free (cfg_filename); return BAD_CONFIG_FILE; |