You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error = _("Cannot upgrade a non HD split wallet without upgrading to support pre split keypool. Please use -upgradewallet=169900 or -upgradewallet with no version specified.").translated;
3861
-
returnnullptr;
3862
-
}
3863
-
3864
-
for (auto spk_man : walletInstance->GetActiveScriptPubKeyMans()) {
3865
-
if (!spk_man->Upgrade(prev_version, error)) {
3866
-
returnnullptr;
3867
-
}
3868
-
}
3833
+
if (!UpgradeWallet(walletInstance, fFirstRun, error, warnings)) {
3834
+
returnnullptr;
3869
3835
}
3870
3836
3871
3837
if (fFirstRun)
@@ -4129,6 +4095,48 @@ const CAddressBookData* CWallet::FindAddressBookEntry(const CTxDestination& dest
error = _("Cannot upgrade a non HD split wallet without upgrading to support pre split keypool. Please use -upgradewallet=169900 or -upgradewallet with no version specified.").translated;
4128
+
returnfalse;
4129
+
}
4130
+
4131
+
for (auto spk_man : walletInstance->GetActiveScriptPubKeyMans()) {
0 commit comments