commit 43461a1866e270a16f12d9a973c34f21113f0497
parent 85b712967f9f66a6e2a1c4f1b8c33897da01eb51
Author: SomberNight <somber.night@protonmail.com>
Date: Thu, 20 Dec 2018 16:46:58 +0100
qt history: fix exporting history
closes #4948
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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,