do not use masternode connections in feeler logic (#1533)

This commit is contained in:
UdjinM6 2017-07-17 16:54:35 +03:00 committed by GitHub
parent d934ffb2ff
commit 9e9df28203

View File

@ -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++;
}