From 886d8f74efb32f2dada09fcbefdbe6b24b00b355 Mon Sep 17 00:00:00 2001 From: Pratik Patil Date: Fri, 4 Apr 2025 17:13:32 -0400 Subject: [PATCH] eth/68: fixed the protocol length --- eth/protocols/eth/protocol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/protocols/eth/protocol.go b/eth/protocols/eth/protocol.go index aeef4330ff..21b948a7a1 100644 --- a/eth/protocols/eth/protocol.go +++ b/eth/protocols/eth/protocol.go @@ -43,7 +43,7 @@ var ProtocolVersions = []uint{ETH68} // protocolLengths are the number of implemented message corresponding to // different protocol versions. -var protocolLengths = map[uint]uint64{ETH68: 17} +var protocolLengths = map[uint]uint64{ETH68: 13} // maxMessageSize is the maximum cap on the size of a protocol message. const maxMessageSize = 10 * 1024 * 1024