diff --git a/p2p/pkg/p2p/libp2p/internal/handshake/handshake.go b/p2p/pkg/p2p/libp2p/internal/handshake/handshake.go index 7b47538a3..6909ee986 100644 --- a/p2p/pkg/p2p/libp2p/internal/handshake/handshake.go +++ b/p2p/pkg/p2p/libp2p/internal/handshake/handshake.go @@ -5,6 +5,7 @@ import ( "context" "crypto/ecdh" "errors" + "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" "github.com/libp2p/go-libp2p/core" @@ -17,7 +18,7 @@ import ( const ( ProtocolName = "handshake" - ProtocolVersion = "4.0.0" + ProtocolVersion = "5.0.0" StreamName = "handshake" )