diff options
author | Vasil Dimov <vd@FreeBSD.org> | 2022-01-19 14:03:23 +0100 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2022-01-25 20:43:25 +0100 |
commit | 8ef457cb83fac796f8b6a56977b1016193fc1185 (patch) | |
tree | 7fc5ace30382fbfea8bd7429084eebbefe75d906 /src/chain.h | |
parent | 572393448b4d32f91b92edc84b4200ab52d62422 (diff) |
Require CBlockIndex::IsAssumedValid() to hold cs_main
Diffstat (limited to 'src/chain.h')
-rw-r--r-- | src/chain.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/chain.h b/src/chain.h index fc89599bd1..2eb780d499 100644 --- a/src/chain.h +++ b/src/chain.h @@ -320,7 +320,11 @@ public: //! @returns true if the block is assumed-valid; this means it is queued to be //! validated by a background chainstate. - bool IsAssumedValid() const { return nStatus & BLOCK_ASSUMED_VALID; } + bool IsAssumedValid() const EXCLUSIVE_LOCKS_REQUIRED(::cs_main) + { + AssertLockHeld(::cs_main); + return nStatus & BLOCK_ASSUMED_VALID; + } //! Raise the validity level of this block index entry. //! Returns true if the validity was changed. |