tfollow-up a6302b3a124a2bc9a208e0e78ddcb81d53d6bdf9 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit b3a3267ede6a9ea97187c4b2d730b9d9ab1eec70 DIR parent 46d8080c76e79670e8abaaaa0eb2d4d4a74544c1 HTML Author: ThomasV <thomasv@electrum.org> Date: Tue, 18 Feb 2020 12:39:18 +0100 follow-up a6302b3a124a2bc9a208e0e78ddcb81d53d6bdf9 Diffstat: M electrum/gui/kivy/uix/screens.py | 3 --- 1 file changed, 0 insertions(+), 3 deletions(-) --- DIR diff --git a/electrum/gui/kivy/uix/screens.py b/electrum/gui/kivy/uix/screens.py t@@ -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'] t@@ -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'])