URI: 
       tqt history: fix exporting history - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 43461a1866e270a16f12d9a973c34f21113f0497
   DIR parent 85b712967f9f66a6e2a1c4f1b8c33897da01eb51
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Thu, 20 Dec 2018 16:46:58 +0100
       
       qt history: fix exporting history
       
       closes #4948
       
       Diffstat:
         M electrum/gui/qt/history_list.py     |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py
       t@@ -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,