mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
3e3b05e1b2
`pylightning` is not much more than an alias for `pyln-client`, so this removes the need to install that as well just to run the tests.
35 lines
1.0 KiB
Python
Executable File
35 lines
1.0 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""This plugin is used to check that sendpay_success and sendpay_failure calls are working correctly.
|
|
"""
|
|
from pyln.client import Plugin
|
|
|
|
plugin = Plugin()
|
|
|
|
|
|
@plugin.init()
|
|
def init(configuration, options, plugin):
|
|
plugin.success_list = []
|
|
plugin.failure_list = []
|
|
|
|
|
|
@plugin.subscribe("sendpay_success")
|
|
def notify_sendpay_success(plugin, sendpay_success):
|
|
plugin.log("Received a sendpay_success: id={}, payment_hash={}".format(sendpay_success['id'], sendpay_success['payment_hash']))
|
|
plugin.success_list.append(sendpay_success)
|
|
|
|
|
|
@plugin.subscribe("sendpay_failure")
|
|
def notify_sendpay_failure(plugin, sendpay_failure):
|
|
plugin.log("Received a sendpay_failure: id={}, payment_hash={}".format(sendpay_failure['data']['id'],
|
|
sendpay_failure['data']['payment_hash']))
|
|
plugin.failure_list.append(sendpay_failure)
|
|
|
|
|
|
@plugin.method('listsendpays_plugin')
|
|
def record_lookup(plugin):
|
|
return {'sendpay_success': plugin.success_list,
|
|
'sendpay_failure': plugin.failure_list}
|
|
|
|
|
|
plugin.run()
|