tests: update, enable legacy tests, remove vm tests (#23350)

* tests: update, enable legacy tests, remove vm tests

* tests: minor fixes
This commit is contained in:
Martin Holst Swende
2021-08-17 17:30:21 +02:00
committed by GitHub
parent 0a68558e7e
commit fb4007bb22
7 changed files with 11 additions and 301 deletions

View File

@ -358,3 +358,7 @@ func rlpHash(x interface{}) (h common.Hash) {
hw.Sum(h[:0])
return h
}
func vmTestBlockHash(n uint64) common.Hash {
return common.BytesToHash(crypto.Keccak256([]byte(big.NewInt(int64(n)).String())))
}