diff --git a/eth/protocol.go b/eth/protocol.go index 6e072f3765..b67e5aaeab 100644 --- a/eth/protocol.go +++ b/eth/protocol.go @@ -8,13 +8,10 @@ import ( "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/ethutil" - ethlogger "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/p2p" "github.com/ethereum/go-ethereum/rlp" ) -var protologger = ethlogger.NewLogger("ETH") - const ( ProtocolVersion = 51 NetworkId = 0 @@ -143,7 +140,6 @@ func (self *ethProtocol) handle() error { return self.protoError(ErrDecode, "->msg %v: %v", msg, err) } hashes := self.chainManager.GetBlockHashesFromHash(request.Hash, request.Amount) - protologger.Debugf("hashes length %v", len(hashes)) return self.rw.EncodeMsg(BlockHashesMsg, ethutil.ByteSliceToInterface(hashes)...) case BlockHashesMsg: