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
throwJSONRPCError(RPC_WALLET_ENCRYPTION_FAILED, "Error: Failed to encrypt the wallet.");
2086
2086
}
2087
2087
2088
-
return"wallet encrypted; The keypool has been flushed and a new HD seed was generated (if you are using HD). You need to make a new backup or write down the new seed (mnemonic).";
2088
+
if (pwallet->IsHDEnabled()) {
2089
+
return"wallet encrypted; If you will forget passphrase you will lose access to your funds. Be sure that you have backup of your seed or mnemonic.";
2090
+
}
2091
+
return"wallet encrypted; The keypool has been flushed. You need to make a new backup.";
0 commit comments