mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
msggen: Enable SendCustomMsg
This commit is contained in:
parent
49b3459be5
commit
ef51ae3c6d
@ -93,7 +93,7 @@ def load_jsonrpc_service(schema_dir: str):
|
||||
"Ping",
|
||||
# "plugin",
|
||||
# "reserveinputs",
|
||||
# "sendcustommsg",
|
||||
"SendCustomMsg",
|
||||
# "sendinvoice",
|
||||
# "sendonionmessage",
|
||||
"SetChannel",
|
||||
|
18
doc/schemas/sendcustommsg.request.json
Normal file
18
doc/schemas/sendcustommsg.request.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"node_id",
|
||||
"msg"
|
||||
],
|
||||
"added": "v0.10.1",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"node_id": {
|
||||
"type": "pubkey"
|
||||
},
|
||||
"msg": {
|
||||
"type": "hex"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user