From bce42cb496e2516420623a455a6080848a2d3a7c Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 30 May 2016 18:09:32 +0200 Subject: [PATCH] minor fix --- gui/qt/transaction_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/transaction_dialog.py b/gui/qt/transaction_dialog.py index bf9c02c1..de416e5f 100644 --- 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')