Browse Source

save height of transaction

283
thomasv 12 years ago
parent
commit
47a3739865
  1. 1
      lib/wallet.py

1
lib/wallet.py

@ -1114,6 +1114,7 @@ class Wallet:
for item in h:
if item.get('tx_hash') == tx_hash:
height = item.get('height')
tx['height'] = height
if height:
print_error("found height for", tx_hash, height)
self.verifier.add(tx_hash, height)

Loading…
Cancel
Save