diff options
Diffstat (limited to 'params/config.go')
-rw-r--r-- | params/config.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/params/config.go b/params/config.go index 6d8d73a9b..d083adf46 100644 --- a/params/config.go +++ b/params/config.go @@ -36,14 +36,14 @@ var MainnetChainConfig = &ChainConfig{ // TestnetChainConfig is the chain parameters to run a node on the test network. var TestnetChainConfig = &ChainConfig{ - ChainId: TestNetChainID, - HomesteadBlock: TestNetHomesteadBlock, - DAOForkBlock: TestNetDAOForkBlock, - DAOForkSupport: false, - EIP150Block: TestNetHomesteadGasRepriceBlock, - EIP150Hash: TestNetHomesteadGasRepriceHash, - EIP155Block: TestNetSpuriousDragon, - EIP158Block: TestNetSpuriousDragon, + ChainId: big.NewInt(3), + HomesteadBlock: big.NewInt(0), + DAOForkBlock: nil, + DAOForkSupport: true, + EIP150Block: big.NewInt(0), + EIP150Hash: common.HexToHash("0x41941023680923e0fe4d74a34bdac8141f2540e3ae90623718e47d66d1ca4a2d"), + EIP155Block: big.NewInt(10), + EIP158Block: big.NewInt(10), } // ChainConfig is the core config which determines the blockchain settings. |