mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
e16ed0e207
And use that to add simple tests. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
16 lines
307 B
Python
Executable File
16 lines
307 B
Python
Executable File
#!/usr/bin/env python3
|
|
from pyln.client import Plugin
|
|
|
|
"""A simple plugin that must come before dep_b.
|
|
"""
|
|
plugin = Plugin()
|
|
|
|
|
|
@plugin.hook('htlc_accepted', before=['dep_b.py'])
|
|
def on_htlc_accepted(htlc, plugin, **kwargs):
|
|
print("htlc_accepted called")
|
|
return {'result': 'continue'}
|
|
|
|
|
|
plugin.run()
|