diff options
author | Anton Evangelatov <anton.evangelatov@gmail.com> | 2018-08-21 16:34:40 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-08-21 16:34:40 +0800 |
commit | c582667c9b88fabfca2908e1a6ef9b3a71daef37 (patch) | |
tree | 295cd329dab108a4bd057b712e88b28c07fd18bb /swarm/network/protocol.go | |
parent | dcd97c41fa2789f2e642cb52b8e18c5bd7bcc81d (diff) | |
download | dexon-c582667c9b88fabfca2908e1a6ef9b3a71daef37.tar dexon-c582667c9b88fabfca2908e1a6ef9b3a71daef37.tar.gz dexon-c582667c9b88fabfca2908e1a6ef9b3a71daef37.tar.bz2 dexon-c582667c9b88fabfca2908e1a6ef9b3a71daef37.tar.lz dexon-c582667c9b88fabfca2908e1a6ef9b3a71daef37.tar.xz dexon-c582667c9b88fabfca2908e1a6ef9b3a71daef37.tar.zst dexon-c582667c9b88fabfca2908e1a6ef9b3a71daef37.zip |
swarm/network: bump bzz protocol version (#17449)
Diffstat (limited to 'swarm/network/protocol.go')
-rw-r--r-- | swarm/network/protocol.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swarm/network/protocol.go b/swarm/network/protocol.go index 7e7fee8ef..7f7ca5eed 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: 5, + Version: 6, MaxMsgSize: 10 * 1024 * 1024, Messages: []interface{}{ HandshakeMsg{}, |