core-lightning/doc/schemas/upgradewallet.request.json
niftynei 35f12b4ca1 upgradewallet: JSONRPC call to update p2sh outputs to a native segwit
v2 opens require you to use native segwit inputs

Changelog-Added: JSONRPC: `upgradewallet` command, sweeps all p2sh-wrapped outputs to a native segwit output
2023-02-04 15:31:16 +10:30

19 lines
423 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": [],
"additionalProperties": false,
"properties": {
"feerate": {
"type": "feerate",
"description": "Feerate for the upgrade transaction",
"added": "v23.02"
},
"reservedok": {
"type": "boolean",
"description": "Include already reserved funds or not",
"added": "v23.02"
}
}
}