diff options
author | Bas van Kervel <basvankervel@gmail.com> | 2017-01-09 19:09:37 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2017-01-12 16:50:54 +0800 |
commit | 745a3adebd9f98e9d53a7d07519d415b55fa5d1f (patch) | |
tree | 13ca74c80dcf6f529999e8bf23ef5f1daa322458 /eth | |
parent | 218ec6c0856caaff70df8e318e035c4ed8c97820 (diff) | |
download | dexon-745a3adebd9f98e9d53a7d07519d415b55fa5d1f.tar.gz dexon-745a3adebd9f98e9d53a7d07519d415b55fa5d1f.tar.zst dexon-745a3adebd9f98e9d53a7d07519d415b55fa5d1f.zip |
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 |