mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-27 19:01:41 +02:00
Require CBlockIndex::IsValid() to hold cs_main
This commit is contained in:
@@ -311,7 +311,9 @@ public:
|
||||
|
||||
//! Check whether this block index entry is valid up to the passed validity level.
|
||||
bool IsValid(enum BlockStatus nUpTo = BLOCK_VALID_TRANSACTIONS) const
|
||||
EXCLUSIVE_LOCKS_REQUIRED(::cs_main)
|
||||
{
|
||||
AssertLockHeld(::cs_main);
|
||||
assert(!(nUpTo & ~BLOCK_VALID_MASK)); // Only validity flags allowed.
|
||||
if (nStatus & BLOCK_FAILED_MASK)
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user