From 08c3d2ccd0e50c2e721c8f710acf1f0f443bc1ee Mon Sep 17 00:00:00 2001 From: SomberNight Date: Sun, 20 Dec 2020 15:12:36 +0100 Subject: [PATCH] lnworker: follow-up 89a14996ced2463379e3d7b252b48a852762cdc9 this fixes running with --offline: E | gui.qt.exception_window.Exception_Hook | exception caught by crash reporter Traceback (most recent call last): File "...\electrum\electrum\gui\qt\channels_list.py", line 241, in do_update_rows items = [QtGui.QStandardItem(x) for x in self.format_fields(chan)] File "...\electrum\electrum\gui\qt\channels_list.py", line 82, in format_fields node_alias = self.lnworker.get_node_alias(chan.node_id) File "...\electrum\electrum\lnworker.py", line 188, in get_node_alias if self.channel_db: AttributeError: 'LNWallet' object has no attribute 'channel_db' --- electrum/lnworker.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/electrum/lnworker.py b/electrum/lnworker.py index 93ef9acf1..7c1b97a7e 100644 --- a/electrum/lnworker.py +++ b/electrum/lnworker.py @@ -78,6 +78,8 @@ from .submarine_swaps import SwapManager if TYPE_CHECKING: from .network import Network from .wallet import Abstract_Wallet + from .channel_db import ChannelDB + from .simple_config import SimpleConfig SAVED_PR_STATUS = [PR_PAID, PR_UNPAID, PR_INFLIGHT] # status that are persisted @@ -173,6 +175,10 @@ class LNWorker(Logger, NetworkRetryManager[LNPeerAddr]): self.features |= LnFeatures.VAR_ONION_OPT self.features |= LnFeatures.PAYMENT_SECRET_OPT + self.network = None # type: Optional[Network] + self.config = None # type: Optional[SimpleConfig] + self.channel_db = None # type: Optional[ChannelDB] + util.register_callback(self.on_proxy_changed, ['proxy_set']) @property @@ -521,8 +527,8 @@ class LNWallet(LNWorker): Logger.__init__(self) self.wallet = wallet self.db = wallet.db - self.config = wallet.config LNWorker.__init__(self, xprv) + self.config = wallet.config self.lnwatcher = None self.lnrater: LNRater = None self.features |= LnFeatures.OPTION_DATA_LOSS_PROTECT_REQ