Skip to content

Commit

Permalink
Trivial: Debug log ambiguity fix for peer addrs
Browse files Browse the repository at this point in the history
This line can be misinterpreted as loading wallet addresses which is confusing, especially when the wallet is disabled.
  • Loading branch information
keystrike committed Mar 1, 2017
1 parent 6206252 commit 6d37ee8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/net.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2210,8 +2210,9 @@ bool CConnman::Start(CScheduler& scheduler, std::string& strNodeError, Options c
SetBestHeight(connOptions.nBestHeight);

clientInterface = connOptions.uiInterface;
if (clientInterface)
clientInterface->InitMessage(_("Loading addresses..."));
if (clientInterface) {
clientInterface->InitMessage(_("Loading P2P addresses..."));
}
// Load addresses from peers.dat
int64_t nStart = GetTimeMillis();
{
Expand Down

0 comments on commit 6d37ee8

Please sign in to comment.