1
0

lnwatcher rebased

This commit is contained in:
Janus
2018-09-12 16:17:10 +02:00
committed by ThomasV
parent 3eabd70df5
commit 261fefb6f3
8 changed files with 459 additions and 267 deletions

View File

@@ -45,6 +45,7 @@ from .simple_config import SimpleConfig
from .exchange_rate import FxThread
from .plugin import run_hook
from .logging import get_logger
from .lnworker import LNWorker
_logger = get_logger(__name__)
@@ -260,6 +261,7 @@ class Daemon(DaemonThread):
return
wallet = Wallet(storage)
wallet.start_network(self.network)
wallet.lnworker = LNWorker(wallet, self.network)
self.wallets[path] = wallet
return wallet