@@ -529,7 +529,9 @@ class CChainState
529
529
530
530
// ! @returns whether or not the CoinsViews object has been fully initialized and we can
531
531
// ! safely flush this object to disk.
532
- bool CanFlushToDisk () const EXCLUSIVE_LOCKS_REQUIRED(cs_main) {
532
+ bool CanFlushToDisk () const EXCLUSIVE_LOCKS_REQUIRED(::cs_main)
533
+ {
534
+ AssertLockHeld (::cs_main);
533
535
return m_coins_views && m_coins_views->m_cacheview ;
534
536
}
535
537
@@ -557,15 +559,17 @@ class CChainState
557
559
std::set<CBlockIndex*, node::CBlockIndexWorkComparator> setBlockIndexCandidates;
558
560
559
561
// ! @returns A reference to the in-memory cache of the UTXO set.
560
- CCoinsViewCache& CoinsTip () EXCLUSIVE_LOCKS_REQUIRED(cs_main)
562
+ CCoinsViewCache& CoinsTip () EXCLUSIVE_LOCKS_REQUIRED(:: cs_main)
561
563
{
564
+ AssertLockHeld (::cs_main);
562
565
assert (m_coins_views->m_cacheview );
563
566
return *m_coins_views->m_cacheview .get ();
564
567
}
565
568
566
569
// ! @returns A reference to the on-disk UTXO set database.
567
- CCoinsViewDB& CoinsDB () EXCLUSIVE_LOCKS_REQUIRED(cs_main)
570
+ CCoinsViewDB& CoinsDB () EXCLUSIVE_LOCKS_REQUIRED(:: cs_main)
568
571
{
572
+ AssertLockHeld (::cs_main);
569
573
return m_coins_views->m_dbview ;
570
574
}
571
575
@@ -577,8 +581,9 @@ class CChainState
577
581
578
582
// ! @returns A reference to a wrapped view of the in-memory UTXO set that
579
583
// ! handles disk read errors gracefully.
580
- CCoinsViewErrorCatcher& CoinsErrorCatcher () EXCLUSIVE_LOCKS_REQUIRED(cs_main)
584
+ CCoinsViewErrorCatcher& CoinsErrorCatcher () EXCLUSIVE_LOCKS_REQUIRED(:: cs_main)
581
585
{
586
+ AssertLockHeld (::cs_main);
582
587
return m_coins_views->m_catcherview ;
583
588
}
584
589
@@ -924,6 +929,7 @@ class ChainstateManager
924
929
925
930
node::BlockMap& BlockIndex () EXCLUSIVE_LOCKS_REQUIRED(::cs_main)
926
931
{
932
+ AssertLockHeld (::cs_main);
927
933
return m_blockman.m_block_index ;
928
934
}
929
935
0 commit comments