diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-08-16 11:25:24 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-08-16 11:25:31 +0200 |
commit | 2c2d471e18f0601c2767cf516425b2ecfcfd2126 (patch) | |
tree | 95ea5cd1cb233a524a7cbed9b80ea3a872989905 /src | |
parent | bbd9740f534f0b1b9d8495a09a76ae5ea31a0285 (diff) | |
parent | edb6cf1432568bc54cd3d6a6cc260f3f265403f6 (diff) |
Merge #8516: [trivial] remove no-longer-used InitError logic
edb6cf1 remove no-longer-used InitError logic (instagibbs)
Diffstat (limited to 'src')
-rw-r--r-- | src/init.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/init.cpp b/src/init.cpp index 72095da4a2..5ef8af8b3f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1067,7 +1067,6 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) LogPrintf("Using data directory %s\n", strDataDir); LogPrintf("Using config file %s\n", GetConfigFile().string()); LogPrintf("Using at most %i connections (%i file descriptors available)\n", nMaxConnections, nFD); - std::ostringstream strErrors; LogPrintf("Using %u threads for script verification\n", nScriptCheckThreads); if (nScriptCheckThreads) { @@ -1492,9 +1491,6 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) // ********************************************************* Step 11: start node - if (!strErrors.str().empty()) - return InitError(strErrors.str()); - //// debug print LogPrintf("mapBlockIndex.size() = %u\n", mapBlockIndex.size()); LogPrintf("nBestHeight = %d\n", chainActive.Height()); |