Skip to content
This repository has been archived by the owner on Nov 15, 2021. It is now read-only.

Commit

Permalink
Merge 55ca968 into 7db87e5
Browse files Browse the repository at this point in the history
  • Loading branch information
ixje committed Jul 24, 2019
2 parents 7db87e5 + 55ca968 commit f436824
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ All notable changes to this project are documented in this file.
- Fix ``Remove()`` behaviour for ``Map`` and ``Array`` types to be inline with C#
- Add support for compressed syscalls
- Fix NEP-5 token send operation in ``np-prompt`` to properly handle token ``decimals``/scale `#990 <https://github.com/CityOfZion/neo-python/pull/990>`_
- Fix ``NOT`` VM instruction


[0.8.4] 2019-02-14
Expand Down
2 changes: 1 addition & 1 deletion neo/VM/ExecutionEngine.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ def ExecuteInstruction(self):

elif opcode == NOT:

x = estack.Pop().GetBigInteger()
x = estack.Pop().GetBoolean()
estack.PushT(not x)
self.CheckStackSize(False, 0)

Expand Down

0 comments on commit f436824

Please sign in to comment.