2020-08-21 12:38:51 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
"""Plugin to test openchannel_hook
|
|
|
|
|
|
|
|
Will simply reject any channel with message "reject on principle".
|
|
|
|
Useful fot testing chained hook.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from pyln.client import Plugin
|
|
|
|
|
|
|
|
plugin = Plugin()
|
|
|
|
|
|
|
|
|
|
|
|
@plugin.hook('openchannel')
|
|
|
|
def on_openchannel(openchannel, plugin, **kwargs):
|
|
|
|
msg = "reject on principle"
|
|
|
|
plugin.log(msg)
|
|
|
|
return {'result': 'reject', 'error_message': msg}
|
|
|
|
|
|
|
|
|
2021-04-20 22:44:45 +02:00
|
|
|
@plugin.hook('openchannel2')
|
|
|
|
def on_openchannel2(openchannel2, plugin, **kwargs):
|
|
|
|
msg = "reject on principle"
|
|
|
|
plugin.log(msg)
|
|
|
|
return {'result': 'reject', 'error_message': msg}
|
2020-12-15 00:33:31 +01:00
|
|
|
|
|
|
|
|
2020-08-21 12:38:51 +02:00
|
|
|
plugin.run()
|