commit b46e86d3c77479f8858ceaff78db9443d161d439
parent 5bf3b26476fc41a1a41e0d2d684779f873c2f2ad
Author: ThomasV <thomasv@electrum.org>
Date: Mon, 28 Aug 2017 05:27:15 +0200
fix 2810
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/qt/history_list.py b/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)