diff options
| author | Matt Corallo <[email protected]> | 2016-11-29 15:17:34 -0800 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2016-12-23 21:30:15 -0500 |
| commit | c8042a48f01aaf306e108683e40db4bfaf0bbcaa (patch) | |
| tree | 8baf9690b4ab0628b7f3795d24dbab85dcac0374 /src/bitcoin-cli.cpp | |
| parent | Merge #9406: Re-enable a blank v1 Tx JSON test (diff) | |
| download | discoin-c8042a48f01aaf306e108683e40db4bfaf0bbcaa.tar.xz discoin-c8042a48f01aaf306e108683e40db4bfaf0bbcaa.zip | |
Remove arguments to ParseConfigFile
Diffstat (limited to 'src/bitcoin-cli.cpp')
| -rw-r--r-- | src/bitcoin-cli.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index 596cc8ead..cee9ae31b 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -99,7 +99,7 @@ static int AppInitRPC(int argc, char* argv[]) return EXIT_FAILURE; } 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 EXIT_FAILURE; |