From 241f4e9b8209b2699e533d39aa94d268d1fe0887 Mon Sep 17 00:00:00 2001 From: etherinc <36263855+etherinc@users.noreply.github.com> Date: Sat, 10 Feb 2018 01:04:15 +0530 Subject: [PATCH] Update config.go --- params/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/params/config.go b/params/config.go index 345f6394ab..4a83ceb1bd 100644 --- a/params/config.go +++ b/params/config.go @@ -31,7 +31,7 @@ var ( var ( // MainnetChainConfig is the chain parameters to run a node on the main network. MainnetChainConfig = &ChainConfig{ - ChainId: big.NewInt(1), + ChainId: big.NewInt(101), HomesteadBlock: big.NewInt(1150000), DAOForkBlock: big.NewInt(1920000), DAOForkSupport: true, @@ -46,7 +46,7 @@ var ( // TestnetChainConfig contains the chain parameters to run a node on the Ropsten test network. TestnetChainConfig = &ChainConfig{ - ChainId: big.NewInt(3), + ChainId: big.NewInt(103), HomesteadBlock: big.NewInt(0), DAOForkBlock: nil, DAOForkSupport: true, @@ -61,7 +61,7 @@ var ( // RinkebyChainConfig contains the chain parameters to run a node on the Rinkeby test network. RinkebyChainConfig = &ChainConfig{ - ChainId: big.NewInt(4), + ChainId: big.NewInt(104), HomesteadBlock: big.NewInt(1), DAOForkBlock: nil, DAOForkSupport: true,