nMaxOutbound is MAX_OUTBOUND_CONNECTIONS on 0.13

Github-Pull: #8949
This commit is contained in:
Wladimir J. van der Laan 2016-10-19 11:48:23 +02:00
parent 53e6196a90
commit 0dbc48a5bd
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6

View File

@ -1715,7 +1715,7 @@ void ThreadOpenConnections()
continue;
// only consider nodes missing relevant services after 40 failed attempts and only if less than half the outbound are up.
if ((addr.nServices & nRelevantServices) != nRelevantServices && (nTries < 40 || nOutbound >= (nMaxOutbound >> 1)))
if ((addr.nServices & nRelevantServices) != nRelevantServices && (nTries < 40 || nOutbound >= (MAX_OUTBOUND_CONNECTIONS >> 1)))
continue;
// do not allow non-default ports, unless after 50 invalid addresses selected already