diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-08-02 19:42:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-02 19:42:06 +0800 |
commit | adc2944b4c9fc3dc6192e2fc5d1cc1200c6edf6b (patch) | |
tree | b32256c670561ea5627a678365b63ecb5545d463 | |
parent | 16eaf2b158ca28b0b4aa48cfb400a7cf8ed70234 (diff) | |
parent | 353a82385b42878a3a2a98cb70f15e84baf887df (diff) | |
download | dexon-adc2944b4c9fc3dc6192e2fc5d1cc1200c6edf6b.tar dexon-adc2944b4c9fc3dc6192e2fc5d1cc1200c6edf6b.tar.gz dexon-adc2944b4c9fc3dc6192e2fc5d1cc1200c6edf6b.tar.bz2 dexon-adc2944b4c9fc3dc6192e2fc5d1cc1200c6edf6b.tar.lz dexon-adc2944b4c9fc3dc6192e2fc5d1cc1200c6edf6b.tar.xz dexon-adc2944b4c9fc3dc6192e2fc5d1cc1200c6edf6b.tar.zst dexon-adc2944b4c9fc3dc6192e2fc5d1cc1200c6edf6b.zip |
Merge pull request #17301 from karalabe/tests-enable-constantinople
tests: enable the Constantinople fork definition
-rw-r--r-- | tests/init.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/init.go b/tests/init.go index af65f9206..f0a4943c1 100644 --- a/tests/init.go +++ b/tests/init.go @@ -53,6 +53,16 @@ var Forks = map[string]*params.ChainConfig{ DAOForkBlock: big.NewInt(0), ByzantiumBlock: big.NewInt(0), }, + "Constantinople": { + ChainID: big.NewInt(1), + HomesteadBlock: big.NewInt(0), + EIP150Block: big.NewInt(0), + EIP155Block: big.NewInt(0), + EIP158Block: big.NewInt(0), + DAOForkBlock: big.NewInt(0), + ByzantiumBlock: big.NewInt(0), + ConstantinopleBlock: big.NewInt(0), + }, "FrontierToHomesteadAt5": { ChainID: big.NewInt(1), HomesteadBlock: big.NewInt(5), |