aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 3f87dc6357..ccab4a1718 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -1765,12 +1765,12 @@ void CConnman::ThreadOpenConnections(const std::vector<std::string> connect)
addr = addrman.Select(fFeeler);
}
- // Require outbound connections to be to distinct network groups
+ // Require outbound connections, other than feelers, to be to distinct network groups
if (!fFeeler && setConnected.count(addr.GetGroup())) {
break;
}
- // if we selected an invalid address, restart
+ // if we selected an invalid or local address, restart
if (!addr.IsValid() || IsLocal(addr)) {
break;
}