From 294ac1f711793446a83189453016b970239b4815 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 16 Oct 2013 11:25:24 +0200 Subject: [PATCH] fix history export (bug #338) --- gui/qt/lite_window.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/qt/lite_window.py b/gui/qt/lite_window.py index 5182714b..b57a8211 100644 --- a/gui/qt/lite_window.py +++ b/gui/qt/lite_window.py @@ -111,12 +111,12 @@ def csv_transaction(wallet): time_string = "pending" if value is not None: - value_string = format_satoshis(value, True, wallet.num_zeros) + value_string = format_satoshis(value, True) else: value_string = '--' if fee is not None: - fee_string = format_satoshis(fee, True, wallet.num_zeros) + fee_string = format_satoshis(fee, True) else: fee_string = '0' @@ -125,7 +125,7 @@ def csv_transaction(wallet): else: label = "" - balance_string = format_satoshis(balance, False, wallet.num_zeros) + balance_string = format_satoshis(balance, False) transaction.writerow([tx_hash, label, confirmations, value_string, fee_string, balance_string, time_string]) QMessageBox.information(None,"CSV Export created", "Your CSV export has been successfully created.") except (IOError, os.error), reason: