exchange

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

commit d45534c574cad8a001a113358885adf989132f8d
parent 0de322fda80f46985650f2dbfd678b20f8ff59dc
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 10 Jun 2015 15:49:54 +0200

adding refs to bugs

Diffstat:
Msrc/mintdb/plugin_mintdb_postgres.c | 9+++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/mintdb/plugin_mintdb_postgres.c b/src/mintdb/plugin_mintdb_postgres.c @@ -2794,10 +2794,11 @@ libtaler_plugin_mintdb_postgres_init (void *cls) TALER_LOG_ERROR ("Cannnot create pthread key.\n"); return NULL; } - /* FIXME: use configuration section with "postgres" in its name... */ + /* FIXME: use configuration section with "postgres" in its name. #3835 */ if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, - "mint", "db_conn_str", + "mint", + "db_conn_str", &pg->connection_cfg_str)) { GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, @@ -2840,8 +2841,8 @@ libtaler_plugin_mintdb_postgres_init (void *cls) plugin->get_link_data_list = &postgres_get_link_data_list; plugin->free_link_data_list = &common_free_link_data_list; plugin->get_transfer = &postgres_get_transfer; - // plugin->have_lock = &postgres_have_lock; - // plugin->insert_lock = &postgres_insert_lock; + // plugin->have_lock = &postgres_have_lock; /* #3625 */ + // plugin->insert_lock = &postgres_insert_lock; /* #3625 */ plugin->get_coin_transactions = &postgres_get_coin_transactions; plugin->free_coin_transaction_list = &common_free_coin_transaction_list; return plugin;