Skip to content

Commit 22f609f

Browse files
committed
Merge #9861: Trivial: Debug log ambiguity fix for peer addrs
6d37ee8 Trivial: Debug log ambiguity fix for peer addrs (keystrike) Tree-SHA512: 9605f12bffd067427a206655c29b0b42689e9b28c313d1f6d6b0ef71351277b98b40f2e2a2ec0ac83c095a9f6f54e7a87762da400a56d2a833f8c2d14e5ac8d5
2 parents 3fabae7 + 6d37ee8 commit 22f609f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/net.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2210,8 +2210,9 @@ bool CConnman::Start(CScheduler& scheduler, std::string& strNodeError, Options c
22102210
SetBestHeight(connOptions.nBestHeight);
22112211

22122212
clientInterface = connOptions.uiInterface;
2213-
if (clientInterface)
2214-
clientInterface->InitMessage(_("Loading addresses..."));
2213+
if (clientInterface) {
2214+
clientInterface->InitMessage(_("Loading P2P addresses..."));
2215+
}
22152216
// Load addresses from peers.dat
22162217
int64_t nStart = GetTimeMillis();
22172218
{

0 commit comments

Comments
 (0)