aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Holst Swende <martin@swende.se>2018-11-26 16:55:45 +0800
committerMartin Holst Swende <martin@swende.se>2018-11-26 16:55:45 +0800
commita5898ba621c51e420097a48b4a3f4fa75165a8b0 (patch)
tree59d68fd8a8aa1d52f8fa36e4616831724ef54ef2
parent2a113f6d72d3b612c6686fa2ab8c30f9e7e6e972 (diff)
downloadgo-tangerine-a5898ba621c51e420097a48b4a3f4fa75165a8b0.tar
go-tangerine-a5898ba621c51e420097a48b4a3f4fa75165a8b0.tar.gz
go-tangerine-a5898ba621c51e420097a48b4a3f4fa75165a8b0.tar.bz2
go-tangerine-a5898ba621c51e420097a48b4a3f4fa75165a8b0.tar.lz
go-tangerine-a5898ba621c51e420097a48b4a3f4fa75165a8b0.tar.xz
go-tangerine-a5898ba621c51e420097a48b4a3f4fa75165a8b0.tar.zst
go-tangerine-a5898ba621c51e420097a48b4a3f4fa75165a8b0.zip
config: add constantinople block to testchainconfig
-rw-r--r--params/config.go2
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))
)