Revert if

This commit is contained in:
jl777
2018-02-22 12:15:36 +02:00
parent 71b9e59c5a
commit 58434c5c34

View File

@@ -4216,7 +4216,6 @@ void static CheckBlockIndex()
// Build forward-pointing map of the entire block tree.
std::multimap<CBlockIndex*,CBlockIndex*> forward;
for (BlockMap::iterator it = mapBlockIndex.begin(); it != mapBlockIndex.end(); it++) {
if ( it != 0 && it->second != 0 )
forward.insert(std::make_pair(it->second->pprev, it->second));
else break;
}