add missing check for execution timeout

constantinope-reentrancy-check
Joran Honig 6 years ago
parent f403b8a7a1
commit 430fb3c3d2
  1. 3
      mythril/laser/ethereum/svm.py

@ -220,7 +220,8 @@ class LaserEVM:
return final_states + [global_state] if track_gas else None
if (
self.time
self.execution_timeout
and self.time
+ timedelta(seconds=self.execution_timeout / self.transaction_count)
<= datetime.now()
and not create

Loading…
Cancel
Save