diff options
author | Matt Corallo <git@bluematt.me> | 2016-11-29 15:17:34 -0800 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2016-12-23 21:30:15 -0500 |
commit | c8042a48f01aaf306e108683e40db4bfaf0bbcaa (patch) | |
tree | 8baf9690b4ab0628b7f3795d24dbab85dcac0374 /src/bitcoind.cpp | |
parent | 0f921e6a0492c4e9f037a9ed91f474885032d68c (diff) |
Remove arguments to ParseConfigFile
Diffstat (limited to 'src/bitcoind.cpp')
-rw-r--r-- | src/bitcoind.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index ba3ccac615..3dd0856289 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -104,7 +104,7 @@ bool AppInit(int argc, char* argv[]) } try { - ReadConfigFile(GetArg("-conf", BITCOIN_CONF_FILENAME), mapArgs, mapMultiArgs); + ReadConfigFile(GetArg("-conf", BITCOIN_CONF_FILENAME)); } catch (const std::exception& e) { fprintf(stderr,"Error reading configuration file: %s\n", e.what()); return false; |