Skip to content

Commit

Permalink
do not use masternode connections in feeler logic (#1533)
Browse files Browse the repository at this point in the history
  • Loading branch information
UdjinM6 authored Jul 17, 2017
1 parent d934ffb commit 9e9df28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1666,7 +1666,7 @@ void ThreadOpenConnections()
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes) {
if (!pnode->fInbound) {
if (!pnode->fInbound && !pnode->fMasternode) {
setConnected.insert(pnode->addr.GetGroup());
nOutbound++;
}
Expand Down

0 comments on commit 9e9df28

Please sign in to comment.