Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
davebryson committed Jul 20, 2021
1 parent 254f6f4 commit 9796b99
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions abci/_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 9796b99

Please sign in to comment.