diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-11-26 17:33:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-26 17:33:09 +0800 |
commit | bb29d208287cb147fbb5738bf7aa81da351c5575 (patch) | |
tree | bdba4f9b61b6e03814171bef58a9e4fd7b9c5178 | |
parent | 38592a13a3c41f7b6cf29ace473852b68cdb6690 (diff) | |
parent | a5898ba621c51e420097a48b4a3f4fa75165a8b0 (diff) | |
download | go-tangerine-bb29d208287cb147fbb5738bf7aa81da351c5575.tar.gz go-tangerine-bb29d208287cb147fbb5738bf7aa81da351c5575.tar.zst go-tangerine-bb29d208287cb147fbb5738bf7aa81da351c5575.zip |
Merge pull request #18179 from holiman/fix_tests
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)) ) |