aboutsummaryrefslogtreecommitdiff
path: root/src/test/fuzz/netaddress.cpp
diff options
context:
space:
mode:
authorVasil Dimov <vd@FreeBSD.org>2022-07-15 13:49:17 +0200
committerVasil Dimov <vd@FreeBSD.org>2022-12-12 11:48:31 +0100
commit944a9de08a00f8273e73cd28b40e46cc0eb0bad1 (patch)
tree2dbe578e6fa953d60df08ba235942173a0d51ed8 /src/test/fuzz/netaddress.cpp
parent043b9de59aec88ae5e29daac7dc2a8b51a9414ce (diff)
downloadbitcoin-944a9de08a00f8273e73cd28b40e46cc0eb0bad1.tar.xz
net: remove CNetAddr::ToString() and use ToStringAddr() instead
Both methods do the same thing, so simplify to having just one. Further, `CService` inherits `CNetAddr` and `CService::ToString()` overrides `CNetAddr::ToString()` but the latter is not virtual which may be confusing. Avoid such a confusion by not having non-virtual methods with the same names in inheritance.
Diffstat (limited to 'src/test/fuzz/netaddress.cpp')
-rw-r--r--src/test/fuzz/netaddress.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/fuzz/netaddress.cpp b/src/test/fuzz/netaddress.cpp
index d71bbcf812..3d7d3188a1 100644
--- a/src/test/fuzz/netaddress.cpp
+++ b/src/test/fuzz/netaddress.cpp
@@ -70,7 +70,6 @@ FUZZ_TARGET(netaddress)
assert(net_addr.GetNetwork() == Network::NET_ONION);
}
(void)net_addr.IsValid();
- (void)net_addr.ToString();
(void)net_addr.ToStringAddr();
const CSubNet sub_net{net_addr, fuzzed_data_provider.ConsumeIntegral<uint8_t>()};