Christian Decker
4 years ago
committed by
Rusty Russell
2 changed files with 44 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||
#!/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() |
Loading…
Reference in new issue