mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 04:36:42 +00:00
Opcodes update
This commit is contained in:
parent
c9f5694a28
commit
b1b94de243
1 changed files with 2 additions and 2 deletions
|
|
@ -10,7 +10,7 @@ namespace jit
|
|||
{
|
||||
|
||||
/// Virtual machine bytecode instruction.
|
||||
enum class Instruction : uint8_t
|
||||
enum class Instruction: uint8_t
|
||||
{
|
||||
STOP = 0x00, ///< halts execution
|
||||
ADD, ///< addition operation
|
||||
|
|
@ -148,8 +148,8 @@ enum class Instruction : uint8_t
|
|||
|
||||
CREATE = 0xf0, ///< create a new account with associated code
|
||||
CALL, ///< message-call into an account
|
||||
CALLCODE, ///< message-call with another account's code only
|
||||
RETURN, ///< halt execution returning output data
|
||||
CALLCODE,
|
||||
SUICIDE = 0xff ///< halt execution and register account for later deletion
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue