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