aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorkeystrike <[email protected]>2017-02-25 21:41:51 -0300
committerJames Evans <[email protected]>2017-02-28 22:14:24 -0300
commit6d37ee83140a1b605cb7a3cb399b9c7fd1ef3261 (patch)
treee2bbdbeec0eda6b78963557b7ded26f474f2f624 /src/net.cpp
parentMerge #9847: Extra test vector for BIP32 (diff)
downloaddiscoin-6d37ee83140a1b605cb7a3cb399b9c7fd1ef3261.tar.xz
discoin-6d37ee83140a1b605cb7a3cb399b9c7fd1ef3261.zip
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.cpp5
1 files 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();
{