mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-27 03:33:27 -03:00
Lock cs_main while loading block index in AppInitMain
This commit is contained in:
parent
02de6a6bcd
commit
c651df8b32
1 changed files with 9 additions and 10 deletions
|
@ -1424,6 +1424,8 @@ bool AppInitMain()
|
||||||
|
|
||||||
uiInterface.InitMessage(_("Loading block index..."));
|
uiInterface.InitMessage(_("Loading block index..."));
|
||||||
|
|
||||||
|
LOCK(cs_main);
|
||||||
|
|
||||||
nStart = GetTimeMillis();
|
nStart = GetTimeMillis();
|
||||||
do {
|
do {
|
||||||
try {
|
try {
|
||||||
|
@ -1532,8 +1534,6 @@ bool AppInitMain()
|
||||||
MIN_BLOCKS_TO_KEEP);
|
MIN_BLOCKS_TO_KEEP);
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
|
||||||
LOCK(cs_main);
|
|
||||||
CBlockIndex* tip = chainActive.Tip();
|
CBlockIndex* tip = chainActive.Tip();
|
||||||
RPCNotifyBlockChange(true, tip);
|
RPCNotifyBlockChange(true, tip);
|
||||||
if (tip && tip->nTime > GetAdjustedTime() + 2 * 60 * 60) {
|
if (tip && tip->nTime > GetAdjustedTime() + 2 * 60 * 60) {
|
||||||
|
@ -1542,7 +1542,6 @@ bool AppInitMain()
|
||||||
"Only rebuild the block database if you are sure that your computer's date and time are correct");
|
"Only rebuild the block database if you are sure that your computer's date and time are correct");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (!CVerifyDB().VerifyDB(chainparams, pcoinsdbview.get(), gArgs.GetArg("-checklevel", DEFAULT_CHECKLEVEL),
|
if (!CVerifyDB().VerifyDB(chainparams, pcoinsdbview.get(), gArgs.GetArg("-checklevel", DEFAULT_CHECKLEVEL),
|
||||||
gArgs.GetArg("-checkblocks", DEFAULT_CHECKBLOCKS))) {
|
gArgs.GetArg("-checkblocks", DEFAULT_CHECKBLOCKS))) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue