Merge pull request #973 from ConsenSys/bugfix/972

Use the current state constraints over the constraint at the annotati…
pull/982/head
JoranHonig 6 years ago committed by GitHub
commit 989d46eb52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      mythril/analysis/modules/integer.py

@ -290,7 +290,7 @@ class IntegerOverflowUnderflowModule(DetectionModule):
try:
transaction_sequence = solver.get_transaction_sequence(
state, node.constraints + [annotation.constraint]
state, state.mstate.constraints + [annotation.constraint]
)
except UnsatError:
continue

Loading…
Cancel
Save