Browse Source

minor fix

bip39-recovery
ThomasV 5 years ago
parent
commit
bcf2246633
  1. 2
      electrum/wallet.py

2
electrum/wallet.py

@ -820,7 +820,7 @@ class Abstract_Wallet(AddressSynchronizer, ABC):
transactions_tmp = OrderedDictWithIndex()
# add on-chain txns
onchain_history = self.get_onchain_history(domain=onchain_domain)
lnworker_history = self.lnworker.get_onchain_history() if self.lnworker else []
lnworker_history = self.lnworker.get_onchain_history() if self.lnworker and include_lightning else {}
for tx_item in onchain_history:
txid = tx_item['txid']
transactions_tmp[txid] = tx_item

Loading…
Cancel
Save