Browse Source

Merge #9861: Trivial: Debug log ambiguity fix for peer addrs

6d37ee8 Trivial: Debug log ambiguity fix for peer addrs (keystrike)

Tree-SHA512: 9605f12bffd067427a206655c29b0b42689e9b28c313d1f6d6b0ef71351277b98b40f2e2a2ec0ac83c095a9f6f54e7a87762da400a56d2a833f8c2d14e5ac8d5
0.15
Wladimir J. van der Laan 8 years ago
parent
commit
22f609f25a
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 5
      src/net.cpp

5
src/net.cpp

@ -2210,8 +2210,9 @@ bool CConnman::Start(CScheduler& scheduler, std::string& strNodeError, Options c
SetBestHeight(connOptions.nBestHeight); SetBestHeight(connOptions.nBestHeight);
clientInterface = connOptions.uiInterface; clientInterface = connOptions.uiInterface;
if (clientInterface) if (clientInterface) {
clientInterface->InitMessage(_("Loading addresses...")); clientInterface->InitMessage(_("Loading P2P addresses..."));
}
// Load addresses from peers.dat // Load addresses from peers.dat
int64_t nStart = GetTimeMillis(); int64_t nStart = GetTimeMillis();
{ {

Loading…
Cancel
Save