From 9796b99b1ddd0df09213195ad98df024a6780940 Mon Sep 17 00:00:00 2001 From: Dave Bryson Date: Tue, 20 Jul 2021 18:17:55 -0500 Subject: [PATCH] cleanup --- abci/_server.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/abci/_server.py b/abci/_server.py index 3dea8d4..b309280 100644 --- a/abci/_server.py +++ b/abci/_server.py @@ -113,9 +113,6 @@ def __init__(self, app: BaseApplication, port=DefaultABCIPort) -> None: Tendermint """ if not app or not isinstance(app, BaseApplication): - log.error( - " Application missing or not an instance of ABCI Base Application" - ) raise TypeError( "Application missing or not an instance of ABCI Base Application" ) @@ -169,7 +166,6 @@ async def _handler( last_pos = 0 bits = await reader.read(MaxReadInBytes) - # print(bits) if len(bits) == 0: log.error(" ... tendermint closed connection") # break to the _stop if the connection stops