Browse Source

fix: verified tx contains pos

master
ecdsa 13 years ago
parent
commit
5cc05b0685
  1. 2
      lib/verifier.py

2
lib/verifier.py

@ -253,7 +253,7 @@ class WalletVerifier(threading.Thread):
with self.lock: with self.lock:
items = self.verified_tx.items()[:] items = self.verified_tx.items()[:]
for tx_hash, item in items: for tx_hash, item in items:
tx_height, timestamp = item tx_height, timestamp, pos = item
if tx_height >= height: if tx_height >= height:
print_error("redoing", tx_hash) print_error("redoing", tx_hash)
with self.lock: with self.lock:

Loading…
Cancel
Save