Add missing AssertLockHeld in ConnectBlock

This commit is contained in:
Wladimir J. van der Laan 2014-04-23 08:55:24 +02:00
parent 41106a50d2
commit b39a07dc42
1 changed files with 1 additions and 0 deletions

View File

@ -1727,6 +1727,7 @@ void ThreadScriptCheck() {
bool ConnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, CCoinsViewCache& view, bool fJustCheck)
{
AssertLockHeld(cs_main);
// Check it again in case a previous version let a bad block in
if (!CheckBlock(block, state, !fJustCheck, !fJustCheck))
return false;