diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 56367a04f94e55..7f512676d2df2e 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -4476,9 +4476,11 @@ std::shared_ptr CWallet::Create(interfaces::Chain& chain, const std::st // TODO: Can't use std::make_shared because we need a custom deleter but // should be possible to use std::allocate_shared. std::shared_ptr walletInstance(new CWallet(&chain, name, std::move(database)), ReleaseWallet); + /* if (!walletInstance->AutoBackupWallet(walletFile, error, warnings) && !error.original.empty()) { return nullptr; } + */ // fixup for 19619 ?? DBErrors nLoadWalletRet = walletInstance->LoadWallet(fFirstRun); if (nLoadWalletRet != DBErrors::LOAD_OK) {