[trivial] Small style updates

This commit is contained in:
Amiti Uttarwar
2020-08-11 10:36:42 -07:00
parent ff6b9081ad
commit 1d74fc7df6
4 changed files with 8 additions and 7 deletions

View File

@@ -882,8 +882,9 @@ void PeerLogicValidation::InitializeNode(CNode *pnode) {
LOCK(g_peer_mutex);
g_peer_map.emplace_hint(g_peer_map.end(), nodeid, std::move(peer));
}
if(!pnode->IsInboundConn())
if (!pnode->IsInboundConn()) {
PushNodeVersion(*pnode, m_connman, GetTime());
}
}
void PeerLogicValidation::ReattemptInitialBroadcast(CScheduler& scheduler) const