mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-05 18:23:03 +01:00
net: Clarify that m_addr_local is only set once
Includes a rename from addrLocal to m_addr_local to match the name of its corresponding Mutex.
This commit is contained in:
@@ -963,7 +963,7 @@ private:
|
||||
size_t m_msg_process_queue_size GUARDED_BY(m_msg_process_queue_mutex){0};
|
||||
|
||||
// Our address, as reported by the peer
|
||||
CService addrLocal GUARDED_BY(m_addr_local_mutex);
|
||||
CService m_addr_local GUARDED_BY(m_addr_local_mutex);
|
||||
mutable Mutex m_addr_local_mutex;
|
||||
|
||||
mapMsgTypeSize mapSendBytesPerMsgType GUARDED_BY(cs_vSend);
|
||||
|
||||
Reference in New Issue
Block a user