Merge pull request #1114 from ConsenSys/develop

DoS module bugfix
pull/1115/head
Bernhard Mueller 5 years ago committed by GitHub
commit b630018993
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      mythril/analysis/modules/dos.py

@ -79,7 +79,6 @@ class DOS(DetectionModule):
target = util.get_concrete_int(state.mstate.stack[-1])
if target in annotation.jump_targets:
annotation.is_loop = True
annotation.loop_start = address
else:
annotation.jump_targets.append(target)

Loading…
Cancel
Save