[net processing] Fix overindentation in MaybeSendAddr()

Reviewer hint: review with `git diff --ignore-all-space`.
This commit is contained in:
John Newbery 2021-02-28 11:17:29 +00:00
parent 38c0be5da3
commit 01a79ff924

View file

@ -4172,7 +4172,7 @@ void PeerManagerImpl::MaybeSendAddr(CNode& node, std::chrono::microseconds curre
// We sent an `addr` message to this peer recently. Nothing more to do.
if (current_time <= node.m_next_addr_send) return;
{
node.m_next_addr_send = PoissonNextSend(current_time, AVG_ADDRESS_BROADCAST_INTERVAL);
std::vector<CAddress> vAddr;
vAddr.reserve(node.vAddrToSend.size());
@ -4208,7 +4208,6 @@ void PeerManagerImpl::MaybeSendAddr(CNode& node, std::chrono::microseconds curre
if (node.vAddrToSend.capacity() > 40)
node.vAddrToSend.shrink_to_fit();
}
}
namespace {
class CompareInvMempoolOrder