mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +01:00
Some rpc commands did not have their corresponding *.request.json files to generate the consolidated json
22 lines
607 B
JSON
22 lines
607 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"psbt"
|
|
],
|
|
"properties": {
|
|
"psbt": {
|
|
"type": "string",
|
|
"description": "the PSBT to reserve inputs from"
|
|
},
|
|
"exclusive": {
|
|
"type": "boolean",
|
|
"description": "If set to *False*, existing reservations are simply extended, rather than causing failure"
|
|
},
|
|
"reserve": {
|
|
"type": "u32",
|
|
"description": "the number of blocks to reserve. By default, reservations are for the next 72 blocks (approximately 6 hours)"
|
|
}
|
|
}
|
|
}
|