aboutsummaryrefslogtreecommitdiffstats
path: root/eth/protocol.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-08-14 22:48:26 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-08-24 22:57:28 +0800
commitca88e18f59af84f34ad67da21fd27a6407eea87c (patch)
treed1943d61c1d6992f1eea83936e420acd639ecb29 /eth/protocol.go
parent42f44dda5468000b3b2c005ec485529bc5da3674 (diff)
downloadgo-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.tar
go-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.tar.gz
go-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.tar.bz2
go-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.tar.lz
go-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.tar.xz
go-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.tar.zst
go-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.zip
eth: kill off protocol eth/60 in preparation for eth/62
Diffstat (limited to 'eth/protocol.go')
-rw-r--r--eth/protocol.go25
1 files changed, 11 insertions, 14 deletions
diff --git a/eth/protocol.go b/eth/protocol.go
index c16223ccf..49f096a3b 100644
--- a/eth/protocol.go
+++ b/eth/protocol.go
@@ -28,7 +28,6 @@ import (
// Constants to match up protocol versions and messages
const (
- eth60 = 60
eth61 = 61
eth62 = 62
eth63 = 63
@@ -36,10 +35,10 @@ const (
)
// Supported versions of the eth protocol (first is primary).
-var ProtocolVersions = []uint{eth64, eth63, eth62, eth61, eth60}
+var ProtocolVersions = []uint{eth64, eth63, eth62, eth61}
// Number of implemented message corresponding to different protocol versions.
-var ProtocolLengths = []uint64{15, 12, 8, 9, 8}
+var ProtocolLengths = []uint64{15, 12, 8, 9}
const (
NetworkId = 1
@@ -48,17 +47,15 @@ const (
// eth protocol message codes
const (
- // Protocol messages belonging to eth/60
- StatusMsg = 0x00
- NewBlockHashesMsg = 0x01
- TxMsg = 0x02
- GetBlockHashesMsg = 0x03
- BlockHashesMsg = 0x04
- GetBlocksMsg = 0x05
- BlocksMsg = 0x06
- NewBlockMsg = 0x07
-
- // Protocol messages belonging to eth/61 (extension of eth/60)
+ // Protocol messages belonging to eth/61
+ StatusMsg = 0x00
+ NewBlockHashesMsg = 0x01
+ TxMsg = 0x02
+ GetBlockHashesMsg = 0x03
+ BlockHashesMsg = 0x04
+ GetBlocksMsg = 0x05
+ BlocksMsg = 0x06
+ NewBlockMsg = 0x07
GetBlockHashesFromNumberMsg = 0x08
// Protocol messages belonging to eth/62 (new protocol from scratch)