|
|
@ -61,6 +61,8 @@ const std::map<std::string, Instruction> eth::c_instructions = |
|
|
|
{ "CODESIZE", Instruction::CODESIZE }, |
|
|
|
{ "CODECOPY", Instruction::CODECOPY }, |
|
|
|
{ "GASPRICE", Instruction::GASPRICE }, |
|
|
|
{ "EXTCODESIZE", Instruction::EXTCODESIZE }, |
|
|
|
{ "EXTCODECOPY", Instruction::EXTCODECOPY }, |
|
|
|
{ "PREVHASH", Instruction::PREVHASH }, |
|
|
|
{ "COINBASE", Instruction::COINBASE }, |
|
|
|
{ "TIMESTAMP", Instruction::TIMESTAMP }, |
|
|
@ -186,6 +188,8 @@ static const std::map<Instruction, InstructionInfo> c_instructionInfo = |
|
|
|
{ Instruction::CODESIZE, { "CODESIZE", 0, 0, 1 } }, |
|
|
|
{ Instruction::CODECOPY, { "CODECOPY", 0, 3, 0 } }, |
|
|
|
{ Instruction::GASPRICE, { "GASPRICE", 0, 0, 1 } }, |
|
|
|
{ Instruction::EXTCODESIZE, { "EXTCODESIZE", 0, 1, 1 } }, |
|
|
|
{ Instruction::EXTCODECOPY, { "EXTCODECOPY", 0, 4, 0 } }, |
|
|
|
{ Instruction::PREVHASH, { "PREVHASH", 0, 0, 1 } }, |
|
|
|
{ Instruction::COINBASE, { "COINBASE", 0, 0, 1 } }, |
|
|
|
{ Instruction::TIMESTAMP, { "TIMESTAMP", 0, 0, 1 } }, |
|
|
|