From f86d91862ecb5dbcdb9f6f24cb9289b3c5c12630 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sat, 5 Nov 2016 16:03:11 +0900 Subject: [PATCH] Fix typos --- server/block_processor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/block_processor.py b/server/block_processor.py index ec9891e..a9da67e 100644 --- a/server/block_processor.py +++ b/server/block_processor.py @@ -81,7 +81,7 @@ class Prefetcher(LoggedClass): async def start(self): '''Loop forever polling for more blocks.''' - self.logger.info('starting prefetch loop...') + self.logger.info('starting daemon poll loop...') while True: try: if await self._caught_up(): @@ -261,7 +261,7 @@ class MemPool(LoggedClass): '''Generate (hex_hash, tx_fee, unconfirmed) tuples for mempool entries for the hash168. - unconfirmed is True if any txin is confirmed. + unconfirmed is True if any txin is unconfirmed. ''' for hex_hash in self.hash168s[hash168]: txin_pairs, txout_pairs, unconfirmed = self.txs[hex_hash] @@ -854,7 +854,7 @@ class BlockProcessor(LoggedClass): '''Generate (hex_hash, tx_fee, unconfirmed) tuples for mempool entries for the hash168. - unconfirmed is True if any txin is confirmed. + unconfirmed is True if any txin is unconfirmed. ''' return self.mempool.transactions(hash168)