mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
3079afb024
Changelog-Added: JSON-RPC: `delforward` command to delete listforwards entries. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
22 lines
357 B
JSON
22 lines
357 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"required": [],
|
|
"properties": {
|
|
"in_channel": {
|
|
"type": "short_channel_id"
|
|
},
|
|
"in_htlc_id": {
|
|
"type": "u64"
|
|
},
|
|
"status": {
|
|
"type": "string",
|
|
"enum": [
|
|
"settled",
|
|
"local_failed",
|
|
"failed"
|
|
]
|
|
}
|
|
}
|
|
}
|