Commit ddfef211 authored by Péter Szilágyi's avatar Péter Szilágyi

eth: disable eth/61 to prepare for more elaborate fork sync algos

parent 3af101cc
...@@ -37,10 +37,10 @@ const ( ...@@ -37,10 +37,10 @@ const (
var ProtocolName = "eth" var ProtocolName = "eth"
// Supported versions of the eth protocol (first is primary). // Supported versions of the eth protocol (first is primary).
var ProtocolVersions = []uint{eth63, eth62, eth61} var ProtocolVersions = []uint{eth63, eth62}
// Number of implemented message corresponding to different protocol versions. // Number of implemented message corresponding to different protocol versions.
var ProtocolLengths = []uint64{17, 8, 9} var ProtocolLengths = []uint64{17, 8}
const ( const (
NetworkId = 1 NetworkId = 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment