diff options
author | Neha Narula <narula@gmail.com> | 2020-09-13 19:07:49 -0400 |
---|---|---|
committer | Neha Narula <narula@gmail.com> | 2020-10-13 17:38:38 -0400 |
commit | 9c47cb29f9f525ee58acc629825a97075156d764 (patch) | |
tree | 3b11d9d10e8ae9020a2e6304f77d983bac1f6418 /src/net.h | |
parent | ec0453cd57736df33e9f50c004d88bea10428ad5 (diff) |
[Rename only] Rename orphan_work_set to m_orphan_work_set.
This helps distinguish the member from any local variables.
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1042,7 +1042,7 @@ public: // Whether a ping is requested. std::atomic<bool> fPingQueued{false}; - std::set<uint256> orphan_work_set; + std::set<uint256> m_orphan_work_set; CNode(NodeId id, ServiceFlags nLocalServicesIn, int nMyStartingHeightIn, SOCKET hSocketIn, const CAddress &addrIn, uint64_t nKeyedNetGroupIn, uint64_t nLocalHostNonceIn, const CAddress &addrBindIn, const std::string &addrNameIn, ConnectionType conn_type_in, bool inbound_onion = false); ~CNode(); |