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.
This commit is contained in:
keystrike 2017-02-25 21:41:51 -03:00 committed by James Evans
parent 6206252e50
commit 6d37ee8314
1 changed files with 3 additions and 2 deletions

View File

@ -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();
{