core-lightning/doc/schemas/delforward.request.json
Rusty Russell 3079afb024 lightningd: add delforward command.
Changelog-Added: JSON-RPC: `delforward` command to delete listforwards entries.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2022-09-22 15:19:46 +02:00

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"
]
}
}
}