Skip to content

Commit 6d37ee8

Browse files
committed
Trivial: Debug log ambiguity fix for peer addrs
This line can be misinterpreted as loading wallet addresses which is confusing, especially when the wallet is disabled.
1 parent 6206252 commit 6d37ee8

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)