aboutsummaryrefslogtreecommitdiff
path: root/src/addrman.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/addrman.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/addrman.cpp')
-rw-r--r--src/addrman.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/addrman.cpp b/src/addrman.cpp
index f16ff2230b..b2fd233195 100644
--- a/src/addrman.cpp
+++ b/src/addrman.cpp
@@ -681,7 +681,7 @@ bool AddrManImpl::Add_(const std::vector<CAddress>& vAddr, const CNetAddr& sourc
added += AddSingle(*it, source, time_penalty) ? 1 : 0;
}
if (added > 0) {
- LogPrint(BCLog::ADDRMAN, "Added %i addresses (of %i) from %s: %i tried, %i new\n", added, vAddr.size(), source.ToString(), nTried, nNew);
+ LogPrint(BCLog::ADDRMAN, "Added %i addresses (of %i) from %s: %i tried, %i new\n", added, vAddr.size(), source.ToStringAddr(), nTried, nNew);
}
return added > 0;
}