From b3a3267ede6a9ea97187c4b2d730b9d9ab1eec70 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 18 Feb 2020 12:39:18 +0100 Subject: [PATCH] follow-up a6302b3a124a2bc9a208e0e78ddcb81d53d6bdf9 --- electrum/gui/kivy/uix/screens.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/electrum/gui/kivy/uix/screens.py b/electrum/gui/kivy/uix/screens.py index e780d6e5a..0ee4487b5 100644 --- a/electrum/gui/kivy/uix/screens.py +++ b/electrum/gui/kivy/uix/screens.py @@ -137,7 +137,6 @@ class HistoryScreen(CScreen): key = tx_item.get('txid') or tx_item['payment_hash'] if is_lightning: status = 0 - txpos = tx_item['txpos'] status_str = 'unconfirmed' if timestamp is None else format_time(int(timestamp)) icon = "atlas://electrum/gui/kivy/theming/light/lightning" message = tx_item['label'] @@ -147,8 +146,6 @@ class HistoryScreen(CScreen): else: tx_hash = tx_item['txid'] conf = tx_item['confirmations'] - txpos = tx_item['txpos_in_block'] or 0 - height = tx_item['height'] tx_mined_info = TxMinedInfo(height=tx_item['height'], conf=tx_item['confirmations'], timestamp=tx_item['timestamp'])