diff options
author | Jon Atack <jon@atack.com> | 2021-06-10 11:44:55 +0200 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2021-06-13 20:15:47 +0200 |
commit | 4ee7aec47ebf6b59b4d930e6e4025e91352c05b4 (patch) | |
tree | 85b8dbf02595930be27cf35ac4a7e778c93e190c /src/net.cpp | |
parent | 7321e6f2fe1641eb331f30e68646f5984d4bcbb3 (diff) |
p2p: add m_network to NodeEvictionCandidate struct
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 16c66d2470..71e7754ad4 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1023,7 +1023,7 @@ bool CConnman::AttemptToEvictConnection() HasAllDesirableServiceFlags(node->nServices), peer_relay_txes, peer_filter_not_null, node->nKeyedNetGroup, node->m_prefer_evict, node->addr.IsLocal(), - node->m_inbound_onion}; + node->m_inbound_onion, node->ConnectedThroughNetwork()}; vEvictionCandidates.push_back(candidate); } } |