mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 04:42:36 -03:00
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:
parent
6206252e50
commit
6d37ee8314
1 changed files with 3 additions and 2 deletions
|
@ -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…
Reference in a new issue