Merge pull request #5334

19f8089f p2p: don't lookup seed nodes when offline (moneromooo-monero)
release-v0.6.1.2
Riccardo Spagni 5 years ago
commit 6e0242f861
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -502,7 +502,7 @@ namespace nodetool
else
{
memcpy(&m_network_id, &::config::NETWORK_ID, 16);
if (m_exclusive_peers.empty())
if (m_exclusive_peers.empty() && !m_offline)
{
// for each hostname in the seed nodes list, attempt to DNS resolve and
// add the result addresses as seed nodes

Loading…
Cancel
Save