diff options
author | Jon Atack <jon@atack.com> | 2020-12-25 14:25:45 +0100 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2020-12-27 14:28:31 +0100 |
commit | af9103cc792e17f35249f1d4cb30f0d6958ceb75 (patch) | |
tree | 52bdedf71cd7b905d104f9b573ac020205a99efd /src/net.cpp | |
parent | cc592a85ea0c371f7269dbcad32857c181b657d1 (diff) |
net, rpc: change CNodeStats::m_network from string to Network
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 7df0d11d37..d07b0ba0c0 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -566,7 +566,7 @@ void CNode::copyStats(CNodeStats &stats, const std::vector<bool> &m_asmap) X(nServices); X(addr); X(addrBind); - stats.m_network = GetNetworkName(ConnectedThroughNetwork()); + stats.m_network = ConnectedThroughNetwork(); stats.m_mapped_as = addr.GetMappedAS(m_asmap); if (m_tx_relay != nullptr) { LOCK(m_tx_relay->cs_filter); |