diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-04-23 08:55:24 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-04-23 09:07:18 +0200 |
commit | b39a07dc42ab6ba746a25206969fb81913146f1f (patch) | |
tree | 15d7a1f8f697ef2406b42feb059f05b3cfd223d6 /src | |
parent | 41106a50d2be9358ab19e75c1d6d075a773525b7 (diff) |
Add missing AssertLockHeld in ConnectBlock
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0bbe833705..a591168c07 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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; |