mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-15 12:40:41 +02:00
DNS seeds: don't query DNS while network is inactive
This commit is contained in:
parent
fa5894f7f5
commit
96954d1794
10
src/net.cpp
10
src/net.cpp
@ -1630,8 +1630,14 @@ void CConnman::ThreadDNSAddressSeed()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (interruptNet) {
|
if (interruptNet) return;
|
||||||
return;
|
|
||||||
|
// hold off on querying seeds if p2p network deactivated
|
||||||
|
if (!fNetworkActive) {
|
||||||
|
LogPrintf("Waiting for network to be reactivated before querying DNS seeds.\n");
|
||||||
|
do {
|
||||||
|
if (!interruptNet.sleep_for(std::chrono::seconds{1})) return;
|
||||||
|
} while (!fNetworkActive);
|
||||||
}
|
}
|
||||||
|
|
||||||
LogPrintf("Loading addresses from DNS seed %s\n", seed);
|
LogPrintf("Loading addresses from DNS seed %s\n", seed);
|
||||||
|
Loading…
Reference in New Issue
Block a user