diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-07 04:48:57 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-07 04:48:57 +0800 |
commit | 24d44f35f2cf17b07330a7e7be79abc2b6b92fc6 (patch) | |
tree | a64252ccd5ed06a9553af310a572e1dc95e92e55 /p2p/peer.go | |
parent | 323216ed85b48abec07266a203b731e7491d4286 (diff) | |
parent | 2adcc31bb48af0dee979f2b4ab255d9af21fd097 (diff) | |
download | dexon-24d44f35f2cf17b07330a7e7be79abc2b6b92fc6.tar dexon-24d44f35f2cf17b07330a7e7be79abc2b6b92fc6.tar.gz dexon-24d44f35f2cf17b07330a7e7be79abc2b6b92fc6.tar.bz2 dexon-24d44f35f2cf17b07330a7e7be79abc2b6b92fc6.tar.lz dexon-24d44f35f2cf17b07330a7e7be79abc2b6b92fc6.tar.xz dexon-24d44f35f2cf17b07330a7e7be79abc2b6b92fc6.tar.zst dexon-24d44f35f2cf17b07330a7e7be79abc2b6b92fc6.zip |
Merge pull request #791 from fjl/discover-sha3-distance
p2p/discover: sha3-based node distance
Diffstat (limited to 'p2p/peer.go')
-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 bc0e6eb5f..94fa03f8d 100644 --- a/p2p/peer.go +++ b/p2p/peer.go @@ -15,7 +15,7 @@ import ( ) const ( - baseProtocolVersion = 3 + baseProtocolVersion = 4 baseProtocolLength = uint64(16) baseProtocolMaxMsgSize = 10 * 1024 * 1024 |