mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-12-29 10:04:41 +01:00
faac4b28ad
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()
|