mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +01:00
Also added splice_out tests that use the new PSBT command. ChangeLog-Added: New `addpsbtoutput` command for creating a PSBT that can receive funds to the on-chain wallet.
25 lines
587 B
JSON
25 lines
587 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"psbt",
|
|
"estimated_added_weight",
|
|
"outnum"
|
|
],
|
|
"added": "v23.11",
|
|
"properties": {
|
|
"psbt": {
|
|
"type": "string",
|
|
"description": "Unsigned PSBT which fulfills the parameters given"
|
|
},
|
|
"estimated_added_weight": {
|
|
"type": "u32",
|
|
"description": "The estimated weight of the added output"
|
|
},
|
|
"outnum": {
|
|
"type": "u32",
|
|
"description": "The 0-based number where the output was placed"
|
|
}
|
|
}
|
|
}
|