Merge pull request #1894 from crytic/fix-operations-with-overflow-protection

remove modulo binop from `can_be_checked_for_overflow`
pull/1912/head
alpharush 2 years ago committed by GitHub
commit 11d5607f83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      slither/slithir/operations/binary.py

@ -94,7 +94,6 @@ class BinaryType(Enum):
return self in [
BinaryType.POWER,
BinaryType.MULTIPLICATION,
BinaryType.MODULO,
BinaryType.ADDITION,
BinaryType.SUBTRACTION,
BinaryType.DIVISION,

Loading…
Cancel
Save