We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8806605 commit a31257eCopy full SHA for a31257e
1 file changed
src/wallet/rpc/wallet.cpp
@@ -781,6 +781,7 @@ RPCHelpMan simulaterawtransaction()
781
static RPCHelpMan migratewallet()
782
{
783
return RPCHelpMan{"migratewallet",
784
+ "\nDISABLED\n"
785
"\nMigrate the wallet to a descriptor wallet.\n"
786
"A new wallet backup will need to be made.\n"
787
"\nThe migration process will create a backup of the wallet before migrating. This backup\n"
@@ -819,6 +820,9 @@ static RPCHelpMan migratewallet()
819
820
wallet_name = request.params[0].get_str();
821
}
822
823
+ throw JSONRPCError(RPC_WALLET_ERROR,
824
+ "migratewallet is disabled in this version.");
825
+
826
SecureString wallet_pass;
827
wallet_pass.reserve(100);
828
if (!request.params[1].isNull()) {
0 commit comments