Merge branch 'release-0.7.8'

This commit is contained in:
Neil Booth 2016-11-25 08:11:59 +09:00
commit 8f3802444e
3 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,8 @@
version 0.7.8
-------------
- hopefully fix failed assertion on reorgs, issue #44
version 0.7.7
-------------

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)

View File

@ -1 +1 @@
VERSION = "ElectrumX 0.7.7"
VERSION = "ElectrumX 0.7.8"