1
0

tmp fix for circular imports

This commit is contained in:
SomberNight
2019-02-20 22:04:51 +01:00
committed by ThomasV
parent 828f07a1ff
commit 9206b6225b

View File

@@ -64,9 +64,6 @@ from .logging import get_logger, Logger
_logger = get_logger(__name__)
# lightning network
from . import lnwatcher
from . import lnrouter
NODES_RETRY_INTERVAL = 60
SERVER_RETRY_INTERVAL = 10
@@ -300,6 +297,8 @@ class Network(Logger):
self._set_status('disconnected')
# lightning network
from . import lnwatcher
from . import lnrouter
self.channel_db = lnrouter.ChannelDB(self)
self.path_finder = lnrouter.LNPathFinder(self.channel_db)
self.lnwatcher = lnwatcher.LNWatcher(self)