mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
15 lines
225 B
Python
Executable File
15 lines
225 B
Python
Executable File
#!/usr/bin/env python3
|
|
from pyln.client import Plugin
|
|
|
|
|
|
plugin = Plugin()
|
|
|
|
|
|
@plugin.hook('htlc_accepted')
|
|
def on_htlc_accepted(plugin, **kwargs):
|
|
plugin.log("Crashing on purpose...")
|
|
raise ValueError()
|
|
|
|
|
|
plugin.run()
|