mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 12:30:07 +00:00
qt ChannelDetails: fix show_tx
This commit is contained in:
parent
6d8c605307
commit
18a2a169c7
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ class ChannelDetailsDialog(QtWidgets.QDialog):
|
|||
|
||||
@QtCore.pyqtSlot(str)
|
||||
def show_tx(self, link_text: str):
|
||||
funding_tx = self.window.wallet.transactions[self.chan.funding_outpoint.txid]
|
||||
funding_tx = self.window.wallet.db.get_transaction(self.chan.funding_outpoint.txid)
|
||||
self.window.show_transaction(funding_tx, tx_desc=_('Funding Transaction'))
|
||||
|
||||
def __init__(self, window: 'ElectrumWindow', chan_id: bytes):
|
||||
|
|
Loading…
Add table
Reference in a new issue