Trivial: Revert translated string change, clarify wallet log messages
This commit is contained in:
parent
df9f712746
commit
c4a884d555
1 changed files with 3 additions and 3 deletions
|
@ -4016,7 +4016,7 @@ std::shared_ptr<CWallet> CWallet::CreateWalletFromFile(const std::string& name,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
uiInterface.InitMessage(strprintf(_("Loading wallet %s..."), walletFile));
|
uiInterface.InitMessage(_("Loading wallet..."));
|
||||||
|
|
||||||
int64_t nStart = GetTimeMillis();
|
int64_t nStart = GetTimeMillis();
|
||||||
bool fFirstRun = true;
|
bool fFirstRun = true;
|
||||||
|
@ -4228,7 +4228,7 @@ std::shared_ptr<CWallet> CWallet::CreateWalletFromFile(const std::string& name,
|
||||||
walletInstance->m_spend_zero_conf_change = gArgs.GetBoolArg("-spendzeroconfchange", DEFAULT_SPEND_ZEROCONF_CHANGE);
|
walletInstance->m_spend_zero_conf_change = gArgs.GetBoolArg("-spendzeroconfchange", DEFAULT_SPEND_ZEROCONF_CHANGE);
|
||||||
walletInstance->m_signal_rbf = gArgs.GetBoolArg("-walletrbf", DEFAULT_WALLET_RBF);
|
walletInstance->m_signal_rbf = gArgs.GetBoolArg("-walletrbf", DEFAULT_WALLET_RBF);
|
||||||
|
|
||||||
walletInstance->WalletLogPrintf("wallet %15dms\n", GetTimeMillis() - nStart);
|
walletInstance->WalletLogPrintf("Wallet completed loading in %15dms\n", GetTimeMillis() - nStart);
|
||||||
|
|
||||||
// Try to top up keypool. No-op if the wallet is locked.
|
// Try to top up keypool. No-op if the wallet is locked.
|
||||||
walletInstance->TopUpKeyPool();
|
walletInstance->TopUpKeyPool();
|
||||||
|
@ -4281,7 +4281,7 @@ std::shared_ptr<CWallet> CWallet::CreateWalletFromFile(const std::string& name,
|
||||||
}
|
}
|
||||||
walletInstance->ScanForWalletTransactions(pindexRescan, nullptr, reserver, true);
|
walletInstance->ScanForWalletTransactions(pindexRescan, nullptr, reserver, true);
|
||||||
}
|
}
|
||||||
walletInstance->WalletLogPrintf("rescan %15dms\n", GetTimeMillis() - nStart);
|
walletInstance->WalletLogPrintf("Rescan completed in %15dms\n", GetTimeMillis() - nStart);
|
||||||
walletInstance->ChainStateFlushed(chainActive.GetLocator());
|
walletInstance->ChainStateFlushed(chainActive.GetLocator());
|
||||||
walletInstance->database->IncrementUpdateCounter();
|
walletInstance->database->IncrementUpdateCounter();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue