Merge #8516: [trivial] remove no-longer-used InitError logic

edb6cf1 remove no-longer-used InitError logic (instagibbs)
This commit is contained in:
Wladimir J. van der Laan 2016-08-16 11:25:24 +02:00 committed by Alexander Block
parent a953997b28
commit 599df51726

View File

@ -1216,7 +1216,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) {
@ -1810,9 +1809,6 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
// ********************************************************* Step 12: start node
if (!strErrors.str().empty())
return InitError(strErrors.str());
//// debug print
LogPrintf("mapBlockIndex.size() = %u\n", mapBlockIndex.size());
LogPrintf("chainActive.Height() = %d\n", chainActive.Height());