1
0
Fork 0
mirror of https://github.com/ElementsProject/lightning.git synced 2025-03-14 03:26:49 +01:00
core-lightning/tests/plugins/suicidal_plugin.py
2020-08-04 13:27:51 -05:00

14 lines
150 B
Python
Executable file

#!/usr/bin/env python3
from pyln.client import Plugin
import os
plugin = Plugin()
@plugin.method("die")
def die():
os._exit(1)
plugin.run()