@@ -4021,7 +4021,7 @@ std::shared_ptr<CWallet> CWallet::CreateWalletFromFile(const std::string& name,
4021
4021
}
4022
4022
}
4023
4023
4024
- uiInterface.InitMessage (strprintf ( _ (" Loading wallet %s ..." ), walletFile ));
4024
+ uiInterface.InitMessage (_ (" Loading wallet..." ));
4025
4025
4026
4026
int64_t nStart = GetTimeMillis ();
4027
4027
bool fFirstRun = true ;
@@ -4233,7 +4233,7 @@ std::shared_ptr<CWallet> CWallet::CreateWalletFromFile(const std::string& name,
4233
4233
walletInstance->m_spend_zero_conf_change = gArgs .GetBoolArg (" -spendzeroconfchange" , DEFAULT_SPEND_ZEROCONF_CHANGE);
4234
4234
walletInstance->m_signal_rbf = gArgs .GetBoolArg (" -walletrbf" , DEFAULT_WALLET_RBF);
4235
4235
4236
- walletInstance->WalletLogPrintf (" wallet %15dms\n " , GetTimeMillis () - nStart);
4236
+ walletInstance->WalletLogPrintf (" Wallet completed loading in %15dms\n " , GetTimeMillis () - nStart);
4237
4237
4238
4238
// Try to top up keypool. No-op if the wallet is locked.
4239
4239
walletInstance->TopUpKeyPool ();
@@ -4286,7 +4286,7 @@ std::shared_ptr<CWallet> CWallet::CreateWalletFromFile(const std::string& name,
4286
4286
}
4287
4287
walletInstance->ScanForWalletTransactions (pindexRescan, nullptr , reserver, true );
4288
4288
}
4289
- walletInstance->WalletLogPrintf (" rescan %15dms\n " , GetTimeMillis () - nStart);
4289
+ walletInstance->WalletLogPrintf (" Rescan completed in %15dms\n " , GetTimeMillis () - nStart);
4290
4290
walletInstance->ChainStateFlushed (chainActive.GetLocator ());
4291
4291
walletInstance->database ->IncrementUpdateCounter ();
4292
4292
0 commit comments