Skip to content

Commit

Permalink
vm: add ABORTMSG & ASSERTMSG opcodes (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
ixje authored Sep 16, 2024
1 parent fb299d7 commit 15a1735
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions neo3/vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ class OpCode(IntEnum):
ISNULL = 0xD8
ISTYPE = 0xD9
CONVERT = 0xDB
ABORTMSG = 0xE0
ASSERTMSG = 0xE1

def __eq__(self, other):
if super(OpCode, self).__eq__(other) is True:
Expand Down

0 comments on commit 15a1735

Please sign in to comment.