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/exchangedb/plugin_exchangedb_postgres.c | |
parent | d7cfb11fc6a171ece9c233d67ec849ac391bc818 (diff) |
move common logic to parse currency into libtalerutil
Diffstat (limited to 'src/exchangedb/plugin_exchangedb_postgres.c')
-rw-r--r-- | src/exchangedb/plugin_exchangedb_postgres.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c index dfa05fb8c..e333c1dfc 100644 --- a/src/exchangedb/plugin_exchangedb_postgres.c +++ b/src/exchangedb/plugin_exchangedb_postgres.c @@ -7230,14 +7230,9 @@ libtaler_plugin_exchangedb_postgres_init (void *cls) return NULL; } if (GNUNET_OK != - GNUNET_CONFIGURATION_get_value_string (cfg, - "taler", - "CURRENCY", - &pg->currency)) + TALER_config_get_currency (cfg, + &pg->currency)) { - GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, - "taler", - "CURRENCY"); GNUNET_free (pg->sql_dir); GNUNET_free (pg); return NULL; |