In the bitcoin-qt Console node window, when I try createwallet wallet_name="test wallet" descriptors=false, I get:
Error: Error parsing JSON: descriptors=false
How can I use named arguments properly in the console?
In the bitcoin-qt Console node window, when I try createwallet wallet_name="test wallet" descriptors=false, I get:
Error: Error parsing JSON: descriptors=false
How can I use named arguments properly in the console?
It looks like you need to add the -named parameter to your call to use named arguments. Try to prefix your prompt with -named:
-named createwallet wallet_name="test wallet" descriptors=false
I came to this conclusion by looking at examples in the RPC documentation of createwallet.