I’m working the next request to load a pockets.
curl --location 'consumer:[email protected]:8332/pockets/test_multisig"'
--header 'Content material-Kind: textual content/plain'
--data '{
"jsonrpc": "2.0",
"methodology":"loadwallet",
"params": ["test_multisig"],
"id": "test_multisig_wallet_load"
}'
It returns…
{"end result":null,"error":{"code":-35,"message":"Pockets "test_multisig" is already loaded."},"id":"test_multisig_wallet_load"}
Nevertheless I then run this actual request, and obtain an error as if the pockets will not be loaded.
curl --location 'consumer:[email protected]:8332/pockets/test_multisig"'
--header 'Content material-Kind: textual content/plain'
--data '{
"jsonrpc": "2.0",
"methodology":"importdescriptors",
"params":{
"requests":[{
"desc":"pkh(cSQPHDBwXGjVzWRqAHm6zfvQhaTuj1f2bFH58h55ghbjtFwvmeXR)",
"active": false,
"range": 20,
"next_index": 0,
"timestamp": "now",
"internal": false,
"label": "test_multisig_wallet"
}]
}
}'
Error…
{"end result":null,"error":{"code":-18,"message":"Requested pockets doesn't exist or will not be loaded"},"id":null}
How can I import descriptors right into a pockets so the pockets has a sequence of addresses?