diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-07 02:35:18 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-07 04:17:52 +0800 |
commit | 693226b1abc8e0557943482b9ca23b61e859ceba (patch) | |
tree | 65edb0066f588cf8d5f2859a41e9f50cde238841 /libevmasm/Instruction.h | |
parent | 3cbdafcfe947eafef7b8f6bbafd06f769261ae28 (diff) | |
download | dexon-solidity-693226b1abc8e0557943482b9ca23b61e859ceba.tar.gz dexon-solidity-693226b1abc8e0557943482b9ca23b61e859ceba.tar.zst dexon-solidity-693226b1abc8e0557943482b9ca23b61e859ceba.zip |
Rename SUICIDE opcode to SELFDESTRUCT in libevmasm
Diffstat (limited to 'libevmasm/Instruction.h')
-rw-r--r-- | libevmasm/Instruction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libevmasm/Instruction.h b/libevmasm/Instruction.h index be71a499..7f56ad3a 100644 --- a/libevmasm/Instruction.h +++ b/libevmasm/Instruction.h @@ -178,7 +178,7 @@ enum class Instruction: uint8_t DELEGATECALL, ///< like CALLCODE but keeps caller's value and sender INVALID = 0xfe, ///< invalid instruction for expressing runtime errors (e.g., division-by-zero) - SUICIDE = 0xff ///< halt execution and register account for later deletion + SELFDESTRUCT = 0xff ///< halt execution and register account for later deletion }; /// @returns the number of PUSH Instruction _inst |