Browse Source

Acquire lock to check for genesis block.

0.13
Patrick Strateman 9 years ago
parent
commit
46b0c3b688
  1. 14
      src/init.cpp

14
src/init.cpp

@ -1371,11 +1371,19 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
vImportFiles.push_back(strFile); vImportFiles.push_back(strFile);
} }
threadGroup.create_thread(boost::bind(&ThreadImport, vImportFiles)); threadGroup.create_thread(boost::bind(&ThreadImport, vImportFiles));
if (chainActive.Tip() == NULL) {
LogPrintf("Waiting for genesis block to be imported...\n"); // Wait for genesis block to be processed
while (!fRequestShutdown && chainActive.Tip() == NULL) bool fHaveGenesis = false;
while (!fHaveGenesis && !fRequestShutdown) {
{
LOCK(cs_main);
fHaveGenesis = (chainActive.Tip() != NULL);
}
if (!fHaveGenesis) {
MilliSleep(10); MilliSleep(10);
} }
}
// ********************************************************* Step 11: start node // ********************************************************* Step 11: start node

Loading…
Cancel
Save