mirror of
https://github.com/aljazceru/plugins.git
synced 2025-12-21 15:14:19 +01:00
Specify startup-only plugins to be non-dynamic
This commit is contained in:
committed by
Christian Decker
parent
93cb498c04
commit
65be1cedbe
@@ -113,6 +113,10 @@ class CLightning_autopilot(Autopilot):
|
||||
print("Could not open a channel to {} with capacity of {}. Error: {}".format(nodeid, satoshis, str(e)))
|
||||
|
||||
|
||||
try:
|
||||
# C-lightning v0.7.2
|
||||
plugin = Plugin(dynamic=False)
|
||||
except:
|
||||
plugin = Plugin()
|
||||
|
||||
|
||||
|
||||
@@ -7,6 +7,10 @@ import threading
|
||||
import time
|
||||
import os
|
||||
|
||||
try:
|
||||
# C-lightning v0.7.2
|
||||
plugin = Plugin(dynamic=False)
|
||||
except:
|
||||
plugin = Plugin()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user