mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
minor fix
This commit is contained in:
parent
076ecb2680
commit
bce42cb496
1 changed files with 1 additions and 1 deletions
|
@ -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')
|
||||
|
|
Loading…
Add table
Reference in a new issue