mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
core/vm: rebase
This commit is contained in:
parent
5d8df7b5a1
commit
6549a87202
2 changed files with 1 additions and 2 deletions
|
|
@ -846,7 +846,6 @@ func opRetf(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) ([]byt
|
|||
return nil, errStopToken
|
||||
}
|
||||
return nil, nil
|
||||
>>>>>>> 3532f16eb7 (core/vm: add eof container)
|
||||
}
|
||||
|
||||
func opJumpf(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) ([]byte, error) {
|
||||
|
|
|
|||
|
|
@ -250,7 +250,7 @@ func TestValidateCode(t *testing.T) {
|
|||
Data: make([]byte, 0),
|
||||
ContainerSections: make([]*Container, 0),
|
||||
}
|
||||
_, err := validateCode(test.code, test.section, container, &pragueEOFInstructionSet, true)
|
||||
_, err := validateCode(test.code, test.section, container, &pragueEOFInstructionSet, false)
|
||||
if !errors.Is(err, test.err) {
|
||||
t.Errorf("test %d (%s): unexpected error (want: %v, got: %v)", i, common.Bytes2Hex(test.code), test.err, err)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue