update opcode values

This commit is contained in:
Sara Reynolds 2023-09-11 12:12:12 -04:00 committed by hrkrshnn
parent f428af3977
commit 5fd609f7a6

View File

@ -177,8 +177,8 @@ enum class Instruction: uint8_t
LOG3, ///< Makes a log entry; 3 topics.
LOG4, ///< Makes a log entry; 4 topics.
TLOAD = 0xb3, ///< https://eips.ethereum.org/EIPS/eip-1153
TSTORE = 0xb4, ///< https://eips.ethereum.org/EIPS/eip-1153
TLOAD = 0x5c, ///< https://eips.ethereum.org/EIPS/eip-1153
TSTORE = 0x5d, ///< https://eips.ethereum.org/EIPS/eip-1153
CREATE = 0xf0, ///< create a new account with associated code
CALL, ///< message-call into an account