diff options
author | Amiti Uttarwar <amiti@uttarwar.org> | 2020-08-11 10:36:42 -0700 |
---|---|---|
committer | Amiti Uttarwar <amiti@uttarwar.org> | 2020-09-02 17:18:21 -0700 |
commit | 1d74fc7df621b31d1b8adc9d7f53e7478d6e40b5 (patch) | |
tree | b484e4143c7c0f3b120148738e64aff2ff709d09 /src/net.cpp | |
parent | ff6b9081add3a40d53b1cc1352b57eeb46e41d45 (diff) |
[trivial] Small style updates
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 0a9a8f7fb4..b0597093e8 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1843,7 +1843,7 @@ void CConnman::ThreadOpenConnections(const std::vector<std::string> connect) // but inbound and manual peers do not use our outbound slots. Inbound peers // also have the added issue that they could be attacker controlled and used // to prevent us from connecting to particular hosts if we used them here. - switch(pnode->m_conn_type){ + switch (pnode->m_conn_type) { case ConnectionType::INBOUND: case ConnectionType::MANUAL: break; |