sleep-wait on genesis block during init with -reindex
This commit is contained in:
parent
f914f1a746
commit
ff09e31a51
1 changed files with 5 additions and 0 deletions
|
@ -1207,6 +1207,11 @@ bool AppInit2(boost::thread_group& threadGroup)
|
|||
vImportFiles.push_back(strFile);
|
||||
}
|
||||
threadGroup.create_thread(boost::bind(&ThreadImport, vImportFiles));
|
||||
if (chainActive.Tip() == NULL) {
|
||||
LogPrintf("Waiting for genesis block to be imported...\n");
|
||||
while (!fRequestShutdown && chainActive.Tip() == NULL)
|
||||
MilliSleep(10);
|
||||
}
|
||||
|
||||
// ********************************************************* Step 10: start node
|
||||
|
||||
|
|
Loading…
Reference in a new issue