Browse Source

fix 2810

seed_v14
ThomasV 8 years ago
parent
commit
b46e86d3c7
  1. 2
      gui/qt/history_list.py

2
gui/qt/history_list.py

@ -119,7 +119,7 @@ class HistoryList(MyTreeWidget):
if self.permit_edit(item, column):
super(HistoryList, self).on_doubleclick(item, column)
else:
tx_hash = str(item.data(0, Qt.UserRole).toString())
tx_hash = item.data(0, Qt.UserRole)
tx = self.wallet.transactions.get(tx_hash)
self.parent.show_transaction(tx)

Loading…
Cancel
Save