1
0

update occurences of get_history

This commit is contained in:
ThomasV
2015-03-30 20:17:24 +02:00
parent 81372ffe4b
commit f051a3e577
5 changed files with 11 additions and 15 deletions

View File

@@ -702,15 +702,8 @@ class ElectrumWindow(QMainWindow):
else:
icon = QIcon(":icons/confirmed.png")
if value is not None:
v_str = self.format_amount(value, True, whitespaces=True)
else:
v_str = _('unknown')
if balance is not None:
balance_str = self.format_amount(balance, whitespaces=True)
else:
balance_str = _('unknown')
v_str = self.format_amount(value, True, whitespaces=True)
balance_str = self.format_amount(balance, whitespaces=True)
label, is_default_label = self.wallet.get_label(tx_hash)
if is_default_label: