Skip to content

Commit

Permalink
contracts: add Backwards option for Find SYSCALL
Browse files Browse the repository at this point in the history
  • Loading branch information
ixje committed Apr 18, 2023
1 parent 00979f5 commit 60fff8c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions neo3/contracts/findoptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ class FindOptions(IntFlag):
DESERIALIZE_VALUES = 1 << 3
PICK_FIELD0 = 1 << 4
PICK_FIELD1 = 1 << 5
BACKWARDS = 1 << 7
ALL = (
KEYS_ONLY
| REMOVE_PREFIX
| VALUES_ONLY
| DESERIALIZE_VALUES
| PICK_FIELD0
| PICK_FIELD1
| BACKWARDS
)

0 comments on commit 60fff8c

Please sign in to comment.