diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-05-04 18:54:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-04 18:54:02 +0800 |
commit | ff2c966e7f0550f4c0cb2b482d1af3064e6db0fe (patch) | |
tree | af4e387c4e9e2420e759078ebe4e1006dad28ea9 /params/config.go | |
parent | 14cc40a31a3f3aa229e6770911324daa2928ef57 (diff) | |
parent | d51a9fd6b7902e35990925c21bfeef427227c628 (diff) | |
download | go-tangerine-ff2c966e7f0550f4c0cb2b482d1af3064e6db0fe.tar go-tangerine-ff2c966e7f0550f4c0cb2b482d1af3064e6db0fe.tar.gz go-tangerine-ff2c966e7f0550f4c0cb2b482d1af3064e6db0fe.tar.bz2 go-tangerine-ff2c966e7f0550f4c0cb2b482d1af3064e6db0fe.tar.lz go-tangerine-ff2c966e7f0550f4c0cb2b482d1af3064e6db0fe.tar.xz go-tangerine-ff2c966e7f0550f4c0cb2b482d1af3064e6db0fe.tar.zst go-tangerine-ff2c966e7f0550f4c0cb2b482d1af3064e6db0fe.zip |
Merge pull request #14418 from karalabe/rinkeby-flag
cmd, core, params: add --rinkeby flag for fast connectivity
Diffstat (limited to 'params/config.go')
-rw-r--r-- | params/config.go | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/params/config.go b/params/config.go index c5a2afb5b..bc63a45b9 100644 --- a/params/config.go +++ b/params/config.go @@ -37,7 +37,7 @@ var ( Ethash: new(EthashConfig), } - // TestnetChainConfig contains the chain parameters to run a node on the ropsten test network. + // TestnetChainConfig contains the chain parameters to run a node on the Ropsten test network. TestnetChainConfig = &ChainConfig{ ChainId: big.NewInt(3), HomesteadBlock: big.NewInt(0), @@ -50,6 +50,22 @@ var ( Ethash: new(EthashConfig), } + // RinkebyChainConfig contains the chain parameters to run a node on the Rinkeby test network. + RinkebyChainConfig = &ChainConfig{ + ChainId: big.NewInt(4), + HomesteadBlock: big.NewInt(1), + DAOForkBlock: nil, + DAOForkSupport: true, + EIP150Block: big.NewInt(2), + EIP150Hash: common.HexToHash("0x9b095b36c15eaf13044373aef8ee0bd3a382a5abb92e402afa44b8249c3a90e9"), + EIP155Block: big.NewInt(3), + EIP158Block: big.NewInt(3), + Clique: &CliqueConfig{ + Period: 15, + Epoch: 30000, + }, + } + // AllProtocolChanges contains every protocol change (EIPs) // introduced and accepted by the Ethereum core developers. // TestChainConfig is like AllProtocolChanges but has chain ID 1. |