@@ -4016,7 +4016,7 @@ std::shared_ptr<CWallet> CWallet::CreateWalletFromFile(const std::string& name,
4016
4016
}
4017
4017
}
4018
4018
4019
- uiInterface.InitMessage (strprintf ( _ (" Loading wallet %s ..." ), walletFile ));
4019
+ uiInterface.InitMessage (_ (" Loading wallet..." ));
4020
4020
4021
4021
int64_t nStart = GetTimeMillis ();
4022
4022
bool fFirstRun = true ;
@@ -4228,7 +4228,7 @@ std::shared_ptr<CWallet> CWallet::CreateWalletFromFile(const std::string& name,
4228
4228
walletInstance->m_spend_zero_conf_change = gArgs .GetBoolArg (" -spendzeroconfchange" , DEFAULT_SPEND_ZEROCONF_CHANGE);
4229
4229
walletInstance->m_signal_rbf = gArgs .GetBoolArg (" -walletrbf" , DEFAULT_WALLET_RBF);
4230
4230
4231
- walletInstance->WalletLogPrintf (" wallet %15dms\n " , GetTimeMillis () - nStart);
4231
+ walletInstance->WalletLogPrintf (" Wallet completed loading in %15dms\n " , GetTimeMillis () - nStart);
4232
4232
4233
4233
// Try to top up keypool. No-op if the wallet is locked.
4234
4234
walletInstance->TopUpKeyPool ();
@@ -4281,7 +4281,7 @@ std::shared_ptr<CWallet> CWallet::CreateWalletFromFile(const std::string& name,
4281
4281
}
4282
4282
walletInstance->ScanForWalletTransactions (pindexRescan, nullptr , reserver, true );
4283
4283
}
4284
- walletInstance->WalletLogPrintf (" rescan %15dms\n " , GetTimeMillis () - nStart);
4284
+ walletInstance->WalletLogPrintf (" Rescan completed in %15dms\n " , GetTimeMillis () - nStart);
4285
4285
walletInstance->ChainStateFlushed (chainActive.GetLocator ());
4286
4286
walletInstance->database ->IncrementUpdateCounter ();
4287
4287
0 commit comments