From 43461a1866e270a16f12d9a973c34f21113f0497 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Thu, 20 Dec 2018 16:46:58 +0100 Subject: [PATCH] qt history: fix exporting history closes #4948 --- electrum/gui/qt/history_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py index 3734b1d69..9e1104f38 100644 --- a/electrum/gui/qt/history_list.py +++ b/electrum/gui/qt/history_list.py @@ -634,7 +634,7 @@ class HistoryList(MyTreeView, AcceptFileDragDrop): self.parent.show_message(_("Your wallet history has been successfully exported.")) def do_export_history(self, file_name, is_csv): - hist = self.wallet.get_full_history(domain=self.get_domain(), + hist = self.wallet.get_full_history(domain=self.hm.get_domain(), from_timestamp=None, to_timestamp=None, fx=self.parent.fx,