mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-12-29 10:04:41 +01:00
14 lines
221 B
Python
14 lines
221 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from lightning import Plugin
|
||
|
|
||
|
plugin = Plugin()
|
||
|
|
||
|
|
||
|
@plugin.hook("htlc_accepted")
|
||
|
def on_htlc_accepted(onion, htlc, plugin):
|
||
|
return {"result": "resolve", "payment_key": "00" * 32}
|
||
|
|
||
|
|
||
|
plugin.run()
|