Browse Source

fix bug when timestamp is None

283
ThomasV 12 years ago
parent
commit
712e0a6c4a
  1. 2
      lib/wallet.py

2
lib/wallet.py

@ -464,7 +464,7 @@ class Wallet:
is_mine, v, fee = self.get_tx_value(tx_hash)
conf, timestamp = self.verifier.get_confirmations(tx_hash)
if conf:
if timestamp:
time_str = datetime.datetime.fromtimestamp(timestamp).isoformat(' ')[:-3]
else:
time_str = 'pending'

Loading…
Cancel
Save