diff options
author | keystrike <keystrike@users.noreply.github.com> | 2017-02-25 21:41:51 -0300 |
---|---|---|
committer | James Evans <keystrike@gmail.com> | 2017-02-28 22:14:24 -0300 |
commit | 6d37ee83140a1b605cb7a3cb399b9c7fd1ef3261 (patch) | |
tree | e2bbdbeec0eda6b78963557b7ded26f474f2f624 /src/net.cpp | |
parent | 6206252e5073c1cde2e313f2e5a3ca17582c5823 (diff) |
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.
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp index de5fc29693..e38d3b344e 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(); { |