mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 06:41:44 +01:00
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.
32 lines
514 B
JSON
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"
|
|
}
|
|
}
|
|
}
|