Skip to content
Snippets Groups Projects
Unverified Commit 8680fa2d authored by Benjamin Bollen's avatar Benjamin Bollen
Browse files

erismint/vm: define evm opcode DELEGATECALL as 0xF4

parent 735492f0
No related branches found
No related tags found
No related merge requests found
......@@ -167,6 +167,7 @@ const (
CALL
CALLCODE
RETURN
DELEGATECALL
// 0x70 range - other
SUICIDE = 0xff
......@@ -317,10 +318,11 @@ var opCodeToString = map[OpCode]string{
LOG4: "LOG4",
// 0xf0 range
CREATE: "CREATE",
CALL: "CALL",
RETURN: "RETURN",
CALLCODE: "CALLCODE",
CREATE: "CREATE",
CALL: "CALL",
RETURN: "RETURN",
CALLCODE: "CALLCODE",
DELEGATECALL: "DELEGATECALL",
// 0x70 range - other
SUICIDE: "SUICIDE",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment