mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
de81a59b1e
And require --developer to use them. Also refuse redirection to deprecated APIs if deprecated APIs are disabled! Changelog-Removed: `dev-sendcustommsg` (use `sendcustommsg`, which was added in v0.10.1) Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
27 lines
774 B
Python
Executable File
27 lines
774 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
This plugin is used to test the chained `rpc_command` hook.
|
|
"""
|
|
from pyln.client import Plugin
|
|
|
|
plugin = Plugin()
|
|
|
|
|
|
@plugin.hook("rpc_command")
|
|
def on_rpc_command(plugin, rpc_command, **kwargs):
|
|
request = rpc_command
|
|
if request["method"] == "invoice":
|
|
# Replace part of this command
|
|
request["params"]["description"] = "rpc_command_1 modified this description"
|
|
return {"replace": request}
|
|
elif request["method"] == "listfunds":
|
|
# Return a custom result to the command
|
|
return {"return": {"result": ["Custom rpc_command_1 result"]}}
|
|
elif request["method"] == "help":
|
|
request["method"] = "listconfigs"
|
|
return {"replace": request}
|
|
return {"result": "continue"}
|
|
|
|
|
|
plugin.run()
|