mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 15:14:23 +01:00
As promised in the Changelog when we converted from failcodes to messages internally. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
17 lines
346 B
Python
Executable File
17 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()
|