Browse Source

wallet: add lnworker in constructor for CLI

regtest_lnd
ThomasV 6 years ago
committed by SomberNight
parent
commit
3d23363fb1
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 6
      electrum/wallet.py

6
electrum/wallet.py

@ -45,6 +45,7 @@ from .util import (NotEnoughFunds, UserCancelled, profiler,
WalletFileException, BitcoinException,
InvalidPassword, format_time, timestamp_to_datetime, Satoshis,
Fiat, bfh, bh2u, TxMinedInfo)
from .simple_config import get_config
from .bitcoin import (COIN, TYPE_ADDRESS, is_address, address_to_script,
is_minikey, relayfee, dust_threshold)
from .crypto import sha256d
@ -229,16 +230,15 @@ class Abstract_Wallet(AddressSynchronizer):
if self.storage.get('wallet_type') is None:
self.storage.put('wallet_type', self.wallet_type)
self.lnworker = None
# invoices and contacts
self.invoices = InvoiceStore(self.storage)
self.contacts = Contacts(self.storage)
self._coin_price_cache = {}
self.lnworker = LNWallet(self) if get_config().get('lightning') else None
def start_network(self, network):
AddressSynchronizer.start_network(self, network)
if network.config.get('lightning'):
self.lnworker = LNWallet(self)
if self.lnworker:
self.lnworker.start_network(network)
def load_and_cleanup(self):

Loading…
Cancel
Save