Prepare 0.4.3

This commit is contained in:
Neil Booth 2016-11-13 17:55:50 +09:00
parent 57dd4ece9c
commit 41ff6e5b11
3 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
version 0.4.3
-------------
- fix exception introduced in 0.4.2
version 0.4.2
-------------

View File

@ -84,7 +84,7 @@ class Prefetcher(LoggedClass):
async def main_loop(self):
'''Loop forever polling for more blocks.'''
self.logger.info('starting daemon poll loop...')
self.logger.info('starting daemon poll loop')
while True:
try:
if await self._caught_up():
@ -201,7 +201,7 @@ class MemPool(LoggedClass):
hex_hashes.difference_update(self.txs)
raw_txs = await self.bp.daemon.getrawtransactions(hex_hashes)
if initial:
self.logger.info('analysing {:,d} mempool txs...'
self.logger.info('analysing {:,d} mempool txs'
.format(len(raw_txs)))
new_txs = {hex_hash: Deserializer(raw_tx).read_tx()
for hex_hash, raw_tx in zip(hex_hashes, raw_txs) if raw_tx}

View File

@ -1 +1 @@
VERSION = "ElectrumX 0.4.1"
VERSION = "ElectrumX 0.4.3"