net, rpc: change CNodeStats::m_network from string to Network

This commit is contained in:
Jon Atack
2020-12-25 14:25:45 +01:00
parent cc592a85ea
commit af9103cc79
3 changed files with 4 additions and 4 deletions

View File

@@ -722,8 +722,8 @@ public:
CAddress addr;
// Bind address of our side of the connection
CAddress addrBind;
// Name of the network the peer connected through
std::string m_network;
// Network the peer connected through
Network m_network;
uint32_t m_mapped_as;
std::string m_conn_type_string;
};