Browse Source

There isn't always a tx hash..\?

283
Maran 12 years ago
parent
commit
9083be46f7
  1. 3
      lib/gui_lite.py

3
lib/gui_lite.py

@ -769,6 +769,9 @@ class MiniActuator:
if tx_hash:
label, is_default_label = self.wallet.get_label(tx_hash)
else:
label = ""
balance_string = format_satoshis(balance, False, self.wallet.num_zeros)
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 succesfully created.")

Loading…
Cancel
Save