swarm/network: Protocol bump (for chunk refactor)

This commit is contained in:
Balint Gabor 2018-09-17 12:34:14 +02:00
parent cc21928e12
commit b2d3efd798
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ const (
// BzzSpec is the spec of the generic swarm handshake
var BzzSpec = &protocols.Spec{
Name: "bzz",
Version: 6,
Version: 7,
MaxMsgSize: 10 * 1024 * 1024,
Messages: []interface{}{
HandshakeMsg{},

View file

@ -31,7 +31,7 @@ import (
)
const (
TestProtocolVersion = 6
TestProtocolVersion = 7
TestProtocolNetworkID = 3
)