diff options
author | Martin Holst Swende <martin@swende.se> | 2019-08-15 20:59:46 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2019-08-15 20:59:46 +0800 |
commit | dbb03fe9893dd19f6b1de1ee3b768317f22fd135 (patch) | |
tree | 1173eb2c12def9c1ba92ce3b2ce70f8c21800718 /tests/init.go | |
parent | 2c50b2c90431ec6663ad7504ce1edf60786191c4 (diff) | |
download | go-tangerine-dbb03fe9893dd19f6b1de1ee3b768317f22fd135.tar go-tangerine-dbb03fe9893dd19f6b1de1ee3b768317f22fd135.tar.gz go-tangerine-dbb03fe9893dd19f6b1de1ee3b768317f22fd135.tar.bz2 go-tangerine-dbb03fe9893dd19f6b1de1ee3b768317f22fd135.tar.lz go-tangerine-dbb03fe9893dd19f6b1de1ee3b768317f22fd135.tar.xz go-tangerine-dbb03fe9893dd19f6b1de1ee3b768317f22fd135.tar.zst go-tangerine-dbb03fe9893dd19f6b1de1ee3b768317f22fd135.zip |
tests: update from ethereum/tests (#19945)
Diffstat (limited to 'tests/init.go')
-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 188cdffe9..f9af5c0ca 100644 --- a/tests/init.go +++ b/tests/init.go @@ -107,6 +107,16 @@ var Forks = map[string]*params.ChainConfig{ ByzantiumBlock: big.NewInt(0), ConstantinopleBlock: big.NewInt(5), }, + "ByzantiumToConstantinopleFixAt5": { + ChainID: big.NewInt(1), + HomesteadBlock: big.NewInt(0), + EIP150Block: big.NewInt(0), + EIP155Block: big.NewInt(0), + EIP158Block: big.NewInt(0), + ByzantiumBlock: big.NewInt(0), + ConstantinopleBlock: big.NewInt(5), + PetersburgBlock: big.NewInt(5), + }, } // UnsupportedForkError is returned when a test requests a fork that isn't implemented. |