diff options
author | holisticode <holistic.computing@gmail.com> | 2018-11-27 02:34:40 +0800 |
---|---|---|
committer | Viktor TrĂ³n <viktor.tron@gmail.com> | 2018-11-27 02:34:40 +0800 |
commit | 695a5cce1e4c0db173dd2a798ed0dc14ee9ca2a1 (patch) | |
tree | f130cc5d2b7e4781b0b6ceb046c63948619ca5cb /swarm/network/protocol.go | |
parent | c207edf2a3a6f48b4fc78cc55982d648eedab198 (diff) | |
download | dexon-695a5cce1e4c0db173dd2a798ed0dc14ee9ca2a1.tar dexon-695a5cce1e4c0db173dd2a798ed0dc14ee9ca2a1.tar.gz dexon-695a5cce1e4c0db173dd2a798ed0dc14ee9ca2a1.tar.bz2 dexon-695a5cce1e4c0db173dd2a798ed0dc14ee9ca2a1.tar.lz dexon-695a5cce1e4c0db173dd2a798ed0dc14ee9ca2a1.tar.xz dexon-695a5cce1e4c0db173dd2a798ed0dc14ee9ca2a1.tar.zst dexon-695a5cce1e4c0db173dd2a798ed0dc14ee9ca2a1.zip |
Increase bzz version (#18184)
* swarm/network/stream/: added stream protocol version match tests
* Increase BZZ version due to streamer version change; version tests
* swarm/network: increased hive and test protocol version
Diffstat (limited to 'swarm/network/protocol.go')
-rw-r--r-- | swarm/network/protocol.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/swarm/network/protocol.go b/swarm/network/protocol.go index 66ae94a88..4b9b28cdc 100644 --- a/swarm/network/protocol.go +++ b/swarm/network/protocol.go @@ -44,7 +44,7 @@ const ( // BzzSpec is the spec of the generic swarm handshake var BzzSpec = &protocols.Spec{ Name: "bzz", - Version: 7, + Version: 8, MaxMsgSize: 10 * 1024 * 1024, Messages: []interface{}{ HandshakeMsg{}, @@ -54,7 +54,7 @@ var BzzSpec = &protocols.Spec{ // DiscoverySpec is the spec for the bzz discovery subprotocols var DiscoverySpec = &protocols.Spec{ Name: "hive", - Version: 6, + Version: 8, MaxMsgSize: 10 * 1024 * 1024, Messages: []interface{}{ peersMsg{}, |