|
|
@ -144,6 +144,7 @@ const std::map<std::string, Instruction> eth::c_instructions = |
|
|
|
{ "SWAP16", Instruction::SWAP16 }, |
|
|
|
{ "CREATE", Instruction::CREATE }, |
|
|
|
{ "CALL", Instruction::CALL }, |
|
|
|
{ "CALLSTATELESS", Instruction::CALLSTATELESS }, |
|
|
|
{ "RETURN", Instruction::RETURN }, |
|
|
|
{ "POST", Instruction::POST }, |
|
|
|
{ "SUICIDE", Instruction::SUICIDE } |
|
|
@ -268,6 +269,7 @@ static const std::map<Instruction, InstructionInfo> c_instructionInfo = |
|
|
|
{ Instruction::SWAP16, { "SWAP16", 0, 17, 17 } }, |
|
|
|
{ Instruction::CREATE, { "CREATE", 0, 3, 1 } }, |
|
|
|
{ Instruction::CALL, { "CALL", 0, 7, 1 } }, |
|
|
|
{ Instruction::CALLSTATELESS, { "CALLSTATELESS",0, 7, 1 } }, |
|
|
|
{ Instruction::RETURN, { "RETURN", 0, 2, 0 } }, |
|
|
|
{ Instruction::POST, { "POST", 0, 5, 0 } }, |
|
|
|
{ Instruction::SUICIDE, { "SUICIDE", 0, 1, 0} } |
|
|
|