diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-01-12 17:26:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-12 17:26:00 +0800 |
commit | ce7822c1301a1eccddb1b56920a4b5bd70d49b48 (patch) | |
tree | 13ca74c80dcf6f529999e8bf23ef5f1daa322458 /eth | |
parent | 218ec6c0856caaff70df8e318e035c4ed8c97820 (diff) | |
parent | 745a3adebd9f98e9d53a7d07519d415b55fa5d1f (diff) | |
download | go-tangerine-ce7822c1301a1eccddb1b56920a4b5bd70d49b48.tar.gz go-tangerine-ce7822c1301a1eccddb1b56920a4b5bd70d49b48.tar.zst go-tangerine-ce7822c1301a1eccddb1b56920a4b5bd70d49b48.zip |
Merge pull request #3553 from bas-vk/rm-olympic-support
core: remove support for Olympic network
Diffstat (limited to 'eth')
-rw-r--r-- | eth/handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/handler.go b/eth/handler.go index 1de3f67e6..63ba0821f 100644 --- a/eth/handler.go +++ b/eth/handler.go @@ -750,7 +750,7 @@ func (self *ProtocolManager) txBroadcastLoop() { // EthNodeInfo represents a short summary of the Ethereum sub-protocol metadata known // about the host peer. type EthNodeInfo struct { - Network int `json:"network"` // Ethereum network ID (0=Olympic, 1=Frontier, 2=Morden) + Network int `json:"network"` // Ethereum network ID (1=Frontier, 2=Morden, Ropsten=3) Difficulty *big.Int `json:"difficulty"` // Total difficulty of the host's blockchain Genesis common.Hash `json:"genesis"` // SHA3 hash of the host's genesis block Head common.Hash `json:"head"` // SHA3 hash of the host's best owned block |