tqt: fix export history - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit cbc3e13e285f53377fb1dc7a76bbba0681481ecd DIR parent 6a32187f01713b35dd2d20638773e3611f07d285 HTML Author: SomberNight <somber.night@protonmail.com> Date: Sat, 21 Sep 2019 18:56:13 +0200 qt: fix export history Diffstat: M electrum/gui/qt/history_list.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) --- DIR diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py t@@ -696,12 +696,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): - # FIXME this is currently broken. - hist = self.wallet.get_full_history(domain=self.hm.get_domain(), - from_timestamp=None, - to_timestamp=None, - fx=self.parent.fx, - show_fees=True) + hist = self.wallet.get_detailed_history(fx=self.parent.fx) txns = hist['transactions'] lines = [] if is_csv: t@@ -709,7 +704,7 @@ class HistoryList(MyTreeView, AcceptFileDragDrop): lines.append([item['txid'], item.get('label', ''), item['confirmations'], - item['value'], + item['bc_value'], item.get('fiat_value', ''), item.get('fee', ''), item.get('fiat_fee', ''),