mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 06:41:44 +01:00
20 lines
475 B
JSON
20 lines
475 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"required": [
|
||
|
"channel_id",
|
||
|
"psbt"
|
||
|
],
|
||
|
"properties": {
|
||
|
"channel_id": {
|
||
|
"type": "hash",
|
||
|
"description": "id of the channel"
|
||
|
},
|
||
|
"psbt": {
|
||
|
"type": "string",
|
||
|
"description": "updated PSBT to be sent to the peer. May be identical to the PSBT last returned by either `openchannel_init` or `openchannel_update`"
|
||
|
}
|
||
|
}
|
||
|
}
|