mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 18:53:23 -03:00
net_processing: add thread safety annotations for PeerManagerImpl members accessed only via the msgproc thread
This commit is contained in:
parent
a66a7ccb82
commit
0ae7987f68
1 changed files with 1 additions and 1 deletions
|
@ -751,7 +751,7 @@ private:
|
|||
int nSyncStarted GUARDED_BY(cs_main) = 0;
|
||||
|
||||
/** Hash of the last block we received via INV */
|
||||
uint256 m_last_block_inv_triggering_headers_sync{};
|
||||
uint256 m_last_block_inv_triggering_headers_sync GUARDED_BY(g_msgproc_mutex){};
|
||||
|
||||
/**
|
||||
* Sources of received blocks, saved to be able punish them when processing
|
||||
|
|
Loading…
Add table
Reference in a new issue