mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
15 lines
313 B
Python
15 lines
313 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from pyln.client import Plugin
|
||
|
|
||
|
plugin = Plugin()
|
||
|
|
||
|
|
||
|
@plugin.hook('commitment_revocation')
|
||
|
def on_commitment_revocation(commitment_txid, penalty_tx, plugin, **kwargs):
|
||
|
with open('watchtower.csv', 'a') as f:
|
||
|
f.write("{}, {}\n".format(commitment_txid, penalty_tx))
|
||
|
|
||
|
|
||
|
plugin.run()
|