diff options
author | Martin Holst Swende <martin@swende.se> | 2018-11-26 16:55:45 +0800 |
---|---|---|
committer | Martin Holst Swende <martin@swende.se> | 2018-11-26 16:55:45 +0800 |
commit | a5898ba621c51e420097a48b4a3f4fa75165a8b0 (patch) | |
tree | 59d68fd8a8aa1d52f8fa36e4616831724ef54ef2 | |
parent | 2a113f6d72d3b612c6686fa2ab8c30f9e7e6e972 (diff) | |
download | dexon-a5898ba621c51e420097a48b4a3f4fa75165a8b0.tar.gz dexon-a5898ba621c51e420097a48b4a3f4fa75165a8b0.tar.zst dexon-a5898ba621c51e420097a48b4a3f4fa75165a8b0.zip |
config: add constantinople block to testchainconfig
-rw-r--r-- | params/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/params/config.go b/params/config.go index 7f04e0e67..3570cb204 100644 --- a/params/config.go +++ b/params/config.go @@ -120,7 +120,7 @@ var ( // adding flags to the config to also have to set these fields. AllCliqueProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, nil, &CliqueConfig{Period: 0, Epoch: 30000}} - TestChainConfig = &ChainConfig{big.NewInt(1), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, nil, new(EthashConfig), nil} + TestChainConfig = &ChainConfig{big.NewInt(1), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, new(EthashConfig), nil} TestRules = TestChainConfig.Rules(new(big.Int)) ) |