diff options
| author | Matt Corallo <[email protected]> | 2016-11-29 18:45:24 -0800 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2016-12-24 11:29:33 -0500 |
| commit | 4cd373aea8d20356727f7d65e0bc818beb6523dc (patch) | |
| tree | 945990959f03be82089270427a7595431459942b /src/bitcoind.cpp | |
| parent | Get rid of mapArgs direct access in ZMQ construction (diff) | |
| download | discoin-4cd373aea8d20356727f7d65e0bc818beb6523dc.tar.xz discoin-4cd373aea8d20356727f7d65e0bc818beb6523dc.zip | |
Un-expose mapArgs from utils.h
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 ee27f4122..98551ee85 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -99,7 +99,7 @@ bool AppInit(int argc, char* argv[]) { if (!boost::filesystem::is_directory(GetDataDir(false))) { - fprintf(stderr, "Error: Specified data directory \"%s\" does not exist.\n", mapArgs["-datadir"].c_str()); + fprintf(stderr, "Error: Specified data directory \"%s\" does not exist.\n", GetArg("-datadir", "").c_str()); return false; } try |