Fix another assertion error during reorgs

Fixes #44
This commit is contained in:
Neil Booth 2016-11-25 08:06:57 +09:00
parent f53e955dde
commit ef2703177e

View File

@ -511,6 +511,11 @@ class BlockProcessor(server.db.DB):
for key, value in puts.items():
batch.put(key, value)
self.fs_height = self.height
self.fs_tx_count = self.tx_count
assert not self.headers
assert not self.tx_hashes
self.logger.info('removed {:,d} history entries from {:,d} addresses'
.format(nremoves, len(hash168s)))
@ -643,10 +648,6 @@ class BlockProcessor(server.db.DB):
self.height -= 1
self.tx_counts.pop()
self.fs_height = self.height
assert not self.headers
assert not self.tx_hashes
self.logger.info('backed up to height {:,d}'.format(self.height))
self.touched.update(touched)