diff options
| author | practicalswift <[email protected]> | 2020-11-04 12:22:06 +0000 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2020-11-04 12:22:06 +0000 |
| commit | f1f433e8ca014f69925e8d5487877e06ca784ec8 (patch) | |
| tree | 9c3745872fa949b5654a1f4d460f38f798d1bbe1 /src/net.cpp | |
| parent | Merge #20245: test: Run script_assets_test even if built --with-libs=no (diff) | |
| download | discoin-f1f433e8ca014f69925e8d5487877e06ca784ec8.tar.xz discoin-f1f433e8ca014f69925e8d5487877e06ca784ec8.zip | |
Make it easier to reason about node eviction by removing unused NodeEvictionCandidate::addr (CAddress)
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp index 468358a94..cf987b699 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -863,7 +863,6 @@ struct NodeEvictionCandidate bool fRelevantServices; bool fRelayTxes; bool fBloomFilter; - CAddress addr; uint64_t nKeyedNetGroup; bool prefer_evict; bool m_is_local; @@ -955,7 +954,7 @@ bool CConnman::AttemptToEvictConnection() NodeEvictionCandidate candidate = {node->GetId(), node->nTimeConnected, node->nMinPingUsecTime, node->nLastBlockTime, node->nLastTXTime, HasAllDesirableServiceFlags(node->nServices), - peer_relay_txes, peer_filter_not_null, node->addr, node->nKeyedNetGroup, + peer_relay_txes, peer_filter_not_null, node->nKeyedNetGroup, node->m_prefer_evict, node->addr.IsLocal()}; vEvictionCandidates.push_back(candidate); } |