From b46e86d3c77479f8858ceaff78db9443d161d439 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 28 Aug 2017 05:27:15 +0200 Subject: [PATCH] fix 2810 --- gui/qt/history_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/history_list.py b/gui/qt/history_list.py index 6b0743f88..74304802b 100644 --- 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)