mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
18 lines
388 B
Python
Executable File
18 lines
388 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))
|
|
# FIXME: Define this!
|
|
WIRE_TEMPORARY_NODE_FAILURE = 0x2002
|
|
return {"result": "fail", "failure_code": WIRE_TEMPORARY_NODE_FAILURE}
|
|
|
|
|
|
plugin.run()
|