mirror of
https://github.com/ElementsProject/lightning.git
synced 2026-08-20 13:27:36 +02:00
16 lines
296 B
Python
16 lines
296 B
Python
|
|
#!/some/bad/path/to/python3
|
||
|
|
from pyln.client import Plugin
|
||
|
|
import os
|
||
|
|
import time
|
||
|
|
|
||
|
|
plugin = Plugin()
|
||
|
|
|
||
|
|
|
||
|
|
@plugin.init()
|
||
|
|
def init(options, configuration, plugin):
|
||
|
|
plugin.log("slow_init.py initializing {}".format(configuration))
|
||
|
|
time.sleep(int(os.getenv('SLOWINIT_TIME', "0")))
|
||
|
|
|
||
|
|
|
||
|
|
plugin.run()
|