mirror of
https://github.com/ElementsProject/lightning.git
synced 2026-08-19 13:17:42 +02:00
As promised in the Changelog when we converted from failcodes to messages internally. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
16 lines
346 B
Python
Executable file
16 lines
346 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
from lightning import Plugin
|
|
|
|
plugin = Plugin()
|
|
|
|
|
|
@plugin.hook("htlc_accepted")
|
|
def on_htlc_accepted(onion, plugin, **kwargs):
|
|
plugin.log("Failing htlc on purpose")
|
|
plugin.log("onion: %r" % (onion))
|
|
# WIRE_TEMPORARY_NODE_FAILURE = 0x2002
|
|
return {"result": "fail", "failure_message": "2002"}
|
|
|
|
|
|
plugin.run()
|