commit 18a2a169c7d9aa74ed21526060927d0092d13791 parent 6d8c6053078d3e6bdc16aeb00766dd0cb5e97ea0 Author: SomberNight <somber.night@protonmail.com> Date: Sun, 26 May 2019 07:27:29 +0200 qt ChannelDetails: fix show_tx Diffstat:
M | electrum/gui/qt/channel_details.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum/gui/qt/channel_details.py b/electrum/gui/qt/channel_details.py @@ -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):