core-lightning/doc/schemas/setchannel.request.json
Rusty Russell b529e79621 lightningd: setchannel can set ignorefeelimits.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Changelog-Added: JSON-RPC: `setchannel` adds a new `ignorefeelimits` parameter to allow peer to set arbitrary commitment transaction fees on a per-channel basis.
2023-07-22 13:11:08 +09:30

32 lines
514 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"id"
],
"properties": {
"id": {
"type": "string"
},
"feebase": {
"type": "msat"
},
"feeppm": {
"type": "u32"
},
"htlcmin": {
"type": "msat"
},
"htlcmax": {
"type": "msat"
},
"enforcedelay": {
"type": "u32"
},
"ignorefeelimits": {
"added": "v23.08",
"type": "boolean"
}
}
}