Specify startup-only plugins to be non-dynamic

This commit is contained in:
darosior
2019-07-29 05:05:28 +02:00
committed by Christian Decker
parent 93cb498c04
commit 65be1cedbe
2 changed files with 10 additions and 2 deletions

View File

@@ -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()

View File

@@ -7,6 +7,10 @@ import threading
import time
import os
try:
# C-lightning v0.7.2
plugin = Plugin(dynamic=False)
except:
plugin = Plugin()