Skip to content

Commit

Permalink
Improve connectivity with Fallback-Nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
georgem committed Aug 5, 2015
1 parent 2c4f2e6 commit 50122c5
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 @@ -1326,7 +1326,7 @@ void ThreadOpenConnections()
boost::this_thread::interruption_point();

// Add seed nodes if IRC isn't working
if (addrman.size()==0 && (GetTime() - nStart > 60) && !fTestNet)
if (addrman.size()<=2 && (GetTime() - nStart > 20) && !fTestNet)
{
std::vector<CAddress> vAdd;
for (unsigned int i = 0; i < ARRAYLEN(pnSeed); i++)
Expand Down

0 comments on commit 50122c5

Please sign in to comment.