tests, core: update tests and make STATICCALL cause touch-delete (#18187)

This commit is contained in:
Martin Holst Swende
2018-11-29 09:51:57 +01:00
committed by Péter Szilágyi
parent 3d21d455dc
commit 7c657fc789
3 changed files with 16 additions and 1 deletions

View File

@ -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.