SomberNight
6 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
2 additions and
3 deletions
-
electrum/network.py
|
|
@ -63,9 +63,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 |
|
|
@ -299,6 +296,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) |
|
|
|