swarm/network: bump bzz protocol version

This commit is contained in:
Anton Evangelatov 2018-08-20 15:57:16 +02:00
parent 7d38d53ae4
commit c0dadeb011
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: 5,
Version: 6,
MaxMsgSize: 10 * 1024 * 1024,
Messages: []interface{}{
HandshakeMsg{},

View file

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