chain: Add assertion in case of missing records in index db

This commit is contained in:
Wladimir J. van der Laan 2016-04-26 14:34:40 +02:00
parent 5c7df7022b
commit 84c13e759d

View file

@ -93,6 +93,7 @@ CBlockIndex* CBlockIndex::GetAncestor(int height)
pindexWalk = pindexWalk->pskip;
heightWalk = heightSkip;
} else {
assert(pindexWalk->pprev);
pindexWalk = pindexWalk->pprev;
heightWalk--;
}