You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
508 B

#!/usr/bin/env python3
"""
This plugin is used to test the `onion_message` hook.
"""
from pyln.client import Plugin
plugin = Plugin()
@plugin.hook("onion_message")
def on_onion_message(plugin, onion_message, **kwargs):
if 'reply_path' not in onion_message:
plugin.log("no reply path")
return
plugin.rpc.call('sendonionmessage', [onion_message['reply_path']])
plugin.log("Sent reply via {}".format(onion_message['reply_path']))
return {"result": "continue"}
plugin.run()