From 6d37ee83140a1b605cb7a3cb399b9c7fd1ef3261 Mon Sep 17 00:00:00 2001 From: keystrike Date: Sat, 25 Feb 2017 21:41:51 -0300 Subject: [PATCH] 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. --- src/net.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index de5fc2969..e38d3b344 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -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(); {