Browse Source

minor fix

283
ThomasV 9 years ago
parent
commit
bce42cb496
  1. 2
      gui/qt/transaction_dialog.py

2
gui/qt/transaction_dialog.py

@ -188,7 +188,7 @@ class TxDialog(QDialog, MessageBoxMixin):
height, conf, timestamp = self.wallet.get_tx_height(tx_hash) height, conf, timestamp = self.wallet.get_tx_height(tx_hash)
if height > 0: if height > 0:
if conf: if conf:
status = _("%d confirmations") % height status = _("%d confirmations") % conf
time_str = datetime.datetime.fromtimestamp(timestamp).isoformat(' ')[:-3] time_str = datetime.datetime.fromtimestamp(timestamp).isoformat(' ')[:-3]
else: else:
status = _('Not verified') status = _('Not verified')

Loading…
Cancel
Save