diff options
author | Felix Lange <fjl@twurst.com> | 2015-02-13 22:08:40 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-02-13 22:08:40 +0800 |
commit | 32a9c0ca809508c1648b8f44f3e09725af7a80d3 (patch) | |
tree | 5777a50b99fed5d1580a5bf99bb696cb1b7deb71 /p2p | |
parent | fd3e1061e01690c7046a0d80635284c1592b7699 (diff) | |
download | go-tangerine-32a9c0ca809508c1648b8f44f3e09725af7a80d3.tar.gz go-tangerine-32a9c0ca809508c1648b8f44f3e09725af7a80d3.tar.zst go-tangerine-32a9c0ca809508c1648b8f44f3e09725af7a80d3.zip |
p2p: bump devp2p protcol version to 3
For compatibility with cpp-ethereum
Diffstat (limited to 'p2p')
-rw-r--r-- | p2p/peer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/peer.go b/p2p/peer.go index 6aa78045b..fd5bec7d5 100644 --- a/p2p/peer.go +++ b/p2p/peer.go @@ -16,7 +16,7 @@ import ( ) const ( - baseProtocolVersion = 2 + baseProtocolVersion = 3 baseProtocolLength = uint64(16) baseProtocolMaxMsgSize = 10 * 1024 * 1024 |