We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 982b68e commit 0386115Copy full SHA for 0386115
src/masternode/meta.h
@@ -92,7 +92,7 @@ class MasternodeMetaStore
92
mutable Mutex cs;
93
std::map<uint256, CMasternodeMetaInfo> metaInfos GUARDED_BY(cs);
94
// keep track of dsq count to prevent masternodes from gaming coinjoin queue
95
- int64_t nDsqCount{0};
+ int64_t nDsqCount{0} GUARDED_BY(cs);
96
// keep track of the used Masternodes for CoinJoin across all wallets
97
// Using deque for efficient FIFO removal and unordered_set for O(1) lookups
98
std::deque<uint256> m_used_masternodes GUARDED_BY(cs);
0 commit comments