mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 07:23:25 +00:00
minor fix
This commit is contained in:
parent
e6e6103434
commit
bcf2246633
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue