update opcode values

This commit is contained in:
Sara Reynolds 2023-09-11 12:12:12 -04:00
parent d7ae4d9460
commit 4d1b8137d9
No known key found for this signature in database

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