4608@@ -4608,11 +4609,11 @@ bool PeerManagerImpl::SendMessages(CNode* pto)
4609 // MaybeSendPing may have marked peer for disconnection
4610 if (pto->fDisconnect) return true;
4611
4612- MaybeSendAddr(*pto, *peer, current_time);
4613-
4614 {
4615 LOCK(cs_main);
4616
4617+ MaybeSendAddr(*pto, *peer, current_time);
Slightly tend toward NACK. We shouldn’t be broadening the scope of cs_main, but reduce it. Seems wrong to use a validation lock for sending p2p addresses on the network.
Agree. Addressed in latest push.