Reset setBlockIndexCandidates once block index db loaded
This commit is contained in:
parent
04e988c6ce
commit
cca48f69b0
1 changed files with 14 additions and 7 deletions
21
src/main.cpp
21
src/main.cpp
|
@ -1949,6 +1949,16 @@ static CBlockIndex* FindMostWorkChain() {
|
||||||
} while(true);
|
} while(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Delete all entries in setBlockIndexCandidates that are worse than the current tip.
|
||||||
|
static void PruneBlockIndexCandidates() {
|
||||||
|
// Note that we can't delete the current block itself, as we may need to return to it later in case a
|
||||||
|
// reorganization to a better block fails.
|
||||||
|
std::set<CBlockIndex*, CBlockIndexWorkComparator>::iterator it = setBlockIndexCandidates.begin();
|
||||||
|
while (setBlockIndexCandidates.value_comp()(*it, chainActive.Tip())) {
|
||||||
|
setBlockIndexCandidates.erase(it++);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Try to make some progress towards making pindexMostWork the active block.
|
// Try to make some progress towards making pindexMostWork the active block.
|
||||||
// pblock is either NULL or a pointer to a CBlock corresponding to pindexMostWork.
|
// pblock is either NULL or a pointer to a CBlock corresponding to pindexMostWork.
|
||||||
static bool ActivateBestChainStep(CValidationState &state, CBlockIndex *pindexMostWork, CBlock *pblock) {
|
static bool ActivateBestChainStep(CValidationState &state, CBlockIndex *pindexMostWork, CBlock *pblock) {
|
||||||
|
@ -1996,13 +2006,7 @@ static bool ActivateBestChainStep(CValidationState &state, CBlockIndex *pindexMo
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Delete all entries in setBlockIndexCandidates that are worse than our new current block.
|
PruneBlockIndexCandidates();
|
||||||
// Note that we can't delete the current block itself, as we may need to return to it later in case a
|
|
||||||
// reorganization to a better block fails.
|
|
||||||
std::set<CBlockIndex*, CBlockIndexWorkComparator>::iterator it = setBlockIndexCandidates.begin();
|
|
||||||
while (setBlockIndexCandidates.value_comp()(*it, chainActive.Tip())) {
|
|
||||||
setBlockIndexCandidates.erase(it++);
|
|
||||||
}
|
|
||||||
// Either the current tip or a successor of it we're working towards is left in setBlockIndexCandidates.
|
// Either the current tip or a successor of it we're working towards is left in setBlockIndexCandidates.
|
||||||
assert(!setBlockIndexCandidates.empty());
|
assert(!setBlockIndexCandidates.empty());
|
||||||
if (!pindexOldTip || chainActive.Tip()->nChainWork > pindexOldTip->nChainWork) {
|
if (!pindexOldTip || chainActive.Tip()->nChainWork > pindexOldTip->nChainWork) {
|
||||||
|
@ -2860,6 +2864,9 @@ bool static LoadBlockIndexDB()
|
||||||
if (it == mapBlockIndex.end())
|
if (it == mapBlockIndex.end())
|
||||||
return true;
|
return true;
|
||||||
chainActive.SetTip(it->second);
|
chainActive.SetTip(it->second);
|
||||||
|
|
||||||
|
PruneBlockIndexCandidates();
|
||||||
|
|
||||||
LogPrintf("LoadBlockIndexDB(): hashBestChain=%s height=%d date=%s progress=%f\n",
|
LogPrintf("LoadBlockIndexDB(): hashBestChain=%s height=%d date=%s progress=%f\n",
|
||||||
chainActive.Tip()->GetBlockHash().ToString(), chainActive.Height(),
|
chainActive.Tip()->GetBlockHash().ToString(), chainActive.Height(),
|
||||||
DateTimeStrFormat("%Y-%m-%d %H:%M:%S", chainActive.Tip()->GetBlockTime()),
|
DateTimeStrFormat("%Y-%m-%d %H:%M:%S", chainActive.Tip()->GetBlockTime()),
|
||||||
|
|
Loading…
Reference in a new issue