diff --git a/squeaknode/network/connection_manager.py b/squeaknode/network/connection_manager.py index 0c44716e..cee6ec08 100644 --- a/squeaknode/network/connection_manager.py +++ b/squeaknode/network/connection_manager.py @@ -135,8 +135,6 @@ class ConnectionManager(object): """ with self.peers_lock: if not self.has_connection(peer.remote_address): - # logger.debug('Failed to remove peer {}'.format(peer)) - # raise MissingPeerError() return del self._peers[peer.remote_address] logger.debug('Removed peer {}'.format(peer)) @@ -184,9 +182,5 @@ class DuplicateNonceError(Exception): pass -# class MissingPeerError(Exception): -# pass - - class NotAcceptingConnectionsError(Exception): pass