mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
f7aba31448
We keep the parameter around for future use (e.g. PTLC support?), but clboss master still sets 'style' to "legacy". Accept, but ignore it. Reported-by: grubman on #c-lightning (IRC) Changelog-Deprecated: JSON-RPC: `sendpay` `route` argument `style` "legacy" (don't use it at all, we ignore it now and always use "tlv" anyway). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"route"
|
|
],
|
|
"properties": {
|
|
"route": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": [
|
|
"id",
|
|
"direction",
|
|
"channel",
|
|
"amount_msat",
|
|
"delay",
|
|
"style"
|
|
],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"id": {
|
|
"type": "pubkey",
|
|
"description": "The node at the end of this hop"
|
|
},
|
|
"channel": {
|
|
"type": "short_channel_id",
|
|
"description": "The channel joining these nodes"
|
|
},
|
|
"direction": {
|
|
"type": "u32",
|
|
"description": "0 if this channel is traversed from lesser to greater **id**, otherwise 1"
|
|
},
|
|
"msatoshi": {
|
|
"type": "u64",
|
|
"deprecated": true
|
|
},
|
|
"amount_msat": {
|
|
"type": "msat",
|
|
"description": "The amount expected by the node at the end of this hop"
|
|
},
|
|
"delay": {
|
|
"type": "u32",
|
|
"description": "The total CLTV expected by the node at the end of this hop"
|
|
},
|
|
"style": {
|
|
"type": "string",
|
|
"description": "The features understood by the destination node",
|
|
"enum": [
|
|
"tlv"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|