Browse Source

qt history: fix exporting history

closes #4948
3.3.3.1
SomberNight 6 years ago
parent
commit
43461a1866
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/gui/qt/history_list.py

2
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.")) self.parent.show_message(_("Your wallet history has been successfully exported."))
def do_export_history(self, file_name, is_csv): 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, from_timestamp=None,
to_timestamp=None, to_timestamp=None,
fx=self.parent.fx, fx=self.parent.fx,

Loading…
Cancel
Save