diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2017-04-11 12:11:27 -0400 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2017-05-04 01:04:47 -0400 |
commit | 0f3471f3ad349374556e671f27de0824dbe57dd6 (patch) | |
tree | 8c11368c0799e9abe0b6f064b2fd10b9308c4a8c /src/net.h | |
parent | 9ff0a51164f0e7aa0ce5424aa38ddbddd357fa2c (diff) |
net: make CNode's id private
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -611,7 +611,6 @@ public: CCriticalSection cs_filter; CBloomFilter* pfilter; std::atomic<int> nRefCount; - const NodeId id; const uint64_t nKeyedNetGroup; std::atomic_bool fPauseRecv; @@ -682,6 +681,7 @@ public: private: CNode(const CNode&); void operator=(const CNode&); + const NodeId id; const uint64_t nLocalHostNonce; |