diff options
author | Martin Holst Swende <martin@swende.se> | 2018-11-29 16:51:57 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-11-29 16:51:57 +0800 |
commit | 7c657fc78957d7ed302eba68bb6122b515364ac4 (patch) | |
tree | 61672d4974be958002d960b638a1e4f182d1f8b0 /tests/init.go | |
parent | 3d21d455dca6e75a635ab5742c66c80ee175c3e7 (diff) | |
download | dexon-7c657fc78957d7ed302eba68bb6122b515364ac4.tar.gz dexon-7c657fc78957d7ed302eba68bb6122b515364ac4.tar.zst dexon-7c657fc78957d7ed302eba68bb6122b515364ac4.zip |
tests, core: update tests and make STATICCALL cause touch-delete (#18187)
Diffstat (limited to 'tests/init.go')
-rw-r--r-- | tests/init.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/init.go b/tests/init.go index f0a4943c1..db0457b6d 100644 --- a/tests/init.go +++ b/tests/init.go @@ -86,6 +86,15 @@ var Forks = map[string]*params.ChainConfig{ EIP158Block: big.NewInt(0), ByzantiumBlock: big.NewInt(5), }, + "ByzantiumToConstantinopleAt5": { + 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), + }, } // UnsupportedForkError is returned when a test requests a fork that isn't implemented. |