diff options
author | Jon Atack <jon@atack.com> | 2021-01-19 15:35:56 +0100 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2021-02-02 00:00:39 +0100 |
commit | b45eae4d5332f1da71ba9ec983fe7818fa4d32e9 (patch) | |
tree | fe3262207ba88f11570675960412ac66d631dadf /src/netbase.cpp | |
parent | 2c0fc856a6b0c82c5dddbbaee417171577514507 (diff) |
net: update NET_UNROUTABLE to not_publicly_routable in GetNetworkName()
Diffstat (limited to 'src/netbase.cpp')
-rw-r--r-- | src/netbase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netbase.cpp b/src/netbase.cpp index 264029d8a2..15abcbd98c 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -55,7 +55,7 @@ enum Network ParseNetwork(const std::string& net_in) { std::string GetNetworkName(enum Network net) { switch (net) { - case NET_UNROUTABLE: return "unroutable"; + case NET_UNROUTABLE: return "not_publicly_routable"; case NET_IPV4: return "ipv4"; case NET_IPV6: return "ipv6"; case NET_ONION: return "onion"; |