ThomasV 13 years ago
parent
commit
7e452ccbe9
  1. 4
      client/gui_qt.py
  2. BIN
      client/icons/confirmed.png
  3. 0
      client/icons/unconfirmed.svg

4
client/gui_qt.py

@ -88,11 +88,11 @@ class ElectrumWindow(QMainWindow):
if tx['height']:
conf = self.wallet.interface.blocks - tx['height'] + 1
time_str = datetime.datetime.fromtimestamp( tx['nTime']).isoformat(' ')[:-3]
icon = QIcon("icons/gtk-apply.svg")
icon = QIcon("icons/confirmed.png")
else:
conf = 0
time_str = 'pending'
icon = QIcon("icons/gtk-execute")
icon = QIcon("icons/unconfirmed.svg")
v = tx['value']
balance += v
label = self.wallet.labels.get(tx_hash)

BIN
client/icons/confirmed.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

0
client/icons/gtk-execute.svg → client/icons/unconfirmed.svg

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Loading…
Cancel
Save