diff options
author | Anthony Towns <aj@erisian.com.au> | 2022-04-20 16:47:29 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2022-05-12 02:25:55 +1000 |
commit | 7d73f58e9cea8f4b0bc16512983898fddde3d764 (patch) | |
tree | f66b9dd960d017efd1af4a56c626e439d121890f /src/qt/clientmodel.h | |
parent | 9db941d7737406b8593024ba130c3f9c186af4c6 (diff) |
Increase threadsafety annotation coverage
Diffstat (limited to 'src/qt/clientmodel.h')
-rw-r--r-- | src/qt/clientmodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/clientmodel.h b/src/qt/clientmodel.h index 846691c0c0..1c8116738d 100644 --- a/src/qt/clientmodel.h +++ b/src/qt/clientmodel.h @@ -61,7 +61,7 @@ public: //! Return number of connections, default is in- and outbound (total) int getNumConnections(unsigned int flags = CONNECTIONS_ALL) const; int getNumBlocks() const; - uint256 getBestBlockHash(); + uint256 getBestBlockHash() EXCLUSIVE_LOCKS_REQUIRED(!m_cached_tip_mutex); int getHeaderTipHeight() const; int64_t getHeaderTipTime() const; |