aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2013-12-01 17:43:37 -0800
committerGavin Andresen <gavinandresen@gmail.com>2013-12-01 17:43:37 -0800
commita65edb104d0168b55aaa0ebf6fc46c76b0ce288b (patch)
tree7c5ab6747e71cf4ab8cc275a4e6a579f08576d2f /src/main.cpp
parent40ad6e7f35b539d06d328082b17878f18f0fc22e (diff)
parentc649637b6ccb270bd0160163e6e92c1456774286 (diff)
downloadbitcoin-a65edb104d0168b55aaa0ebf6fc46c76b0ce288b.tar.xz
Merge pull request #3329 from gavinandresen/syncdebug
mutex debugging routines: LocksHeld() and AssertLockHeld()
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 457fc941e7..eb3af5bea6 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2176,6 +2176,8 @@ void PushGetBlocks(CNode* pnode, CBlockIndex* pindexBegin, uint256 hashEnd)
bool ProcessBlock(CValidationState &state, CNode* pfrom, CBlock* pblock, CDiskBlockPos *dbp)
{
+ AssertLockHeld("cs_main");
+
// Check for duplicate
uint256 hash = pblock->GetHash();
if (mapBlockIndex.count(hash))