Merge #8063: Acquire lock to check for genesis block.
46b0c3b
Acquire lock to check for genesis block. (Patrick Strateman)
This commit is contained in:
commit
c49c825bd9
1 changed files with 11 additions and 3 deletions
14
src/init.cpp
14
src/init.cpp
|
@ -1373,10 +1373,18 @@ 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…
Reference in a new issue