From 15a173590dce45d23d5fffd3c357756214a2495e Mon Sep 17 00:00:00 2001 From: ixje Date: Mon, 16 Sep 2024 16:36:01 +0200 Subject: [PATCH] vm: add `ABORTMSG` & `ASSERTMSG` opcodes (#314) --- neo3/vm.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neo3/vm.py b/neo3/vm.py index adc1742..ea5df49 100644 --- a/neo3/vm.py +++ b/neo3/vm.py @@ -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: