cmd,core,eth,params,tests: define yolov3 + enable EIP-2565 (#22213)
Removes the yolov2 definition, adds yolov3, including EIP-2565. This PR also disables some of the erroneously generated blockchain and statetests, and adds the new genesis hash + alloc for yolov3. This PR disables the CLI switches for yolo, since it's not complete until we merge support for 2930.
This commit is contained in:
@ -45,6 +45,13 @@ func TestBlockchain(t *testing.T) {
|
||||
bt.skipLoad(`.*randomStatetest94.json.*`)
|
||||
|
||||
bt.walk(t, blockTestDir, func(t *testing.T, name string, test *BlockTest) {
|
||||
if test.json.Network == "Berlin" {
|
||||
// Our current berlin-tests were generated using YOLOv2 rules, hence a lot of them
|
||||
// fail when berlin is defined as YOLOv3. We skip those, until they've been
|
||||
// regenerated and re-imported
|
||||
// TODO (@holiman)
|
||||
return
|
||||
}
|
||||
if err := bt.checkFailure(t, name+"/trie", test.Run(false)); err != nil {
|
||||
t.Errorf("test without snapshotter failed: %v", err)
|
||||
}
|
||||
|
Reference in New Issue
Block a user