commit bce42cb496e2516420623a455a6080848a2d3a7c
parent 076ecb26809f6eeac45726921e2557ff0bd25199
Author: ThomasV <thomasv@electrum.org>
Date: Mon, 30 May 2016 18:09:32 +0200
minor fix
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/qt/transaction_dialog.py b/gui/qt/transaction_dialog.py
@@ -188,7 +188,7 @@ class TxDialog(QDialog, MessageBoxMixin):
height, conf, timestamp = self.wallet.get_tx_height(tx_hash)
if height > 0:
if conf:
- status = _("%d confirmations") % height
+ status = _("%d confirmations") % conf
time_str = datetime.datetime.fromtimestamp(timestamp).isoformat(' ')[:-3]
else:
status = _('Not verified')