Remove leftover print statement
Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
parent
c20ed21c2d
commit
0a2bef6192
1 changed files with 0 additions and 1 deletions
|
@ -133,7 +133,6 @@ class FlexpoolHandler(Handler):
|
||||||
# don't spam block notification at initialization
|
# don't spam block notification at initialization
|
||||||
notification_slice = MAX_NOTIFICATIONS_COUNT if len(blocks) > MAX_NOTIFICATIONS_COUNT else 0
|
notification_slice = MAX_NOTIFICATIONS_COUNT if len(blocks) > MAX_NOTIFICATIONS_COUNT else 0
|
||||||
for block in blocks[notification_slice:]:
|
for block in blocks[notification_slice:]:
|
||||||
print(block)
|
|
||||||
if not last_block or last_block < block.number:
|
if not last_block or last_block < block.number:
|
||||||
logger.info(f'new block {block.number}')
|
logger.info(f'new block {block.number}')
|
||||||
if self.notifier:
|
if self.notifier:
|
||||||
|
|
Reference in a new issue