Opcodes update

This commit is contained in:
Paweł Bylica 2014-12-05 15:38:19 +01:00
parent c9f5694a28
commit b1b94de243

View file

@ -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
};