move constraint creation out of try context

pull/1032/head
Joran Honig 6 years ago
parent 31fd66acf5
commit 6887fbdc06
  1. 15
      mythril/analysis/modules/external_calls.py

@ -108,14 +108,15 @@ def _analyze_state(state):
def _is_precompile_call(global_state: GlobalState): def _is_precompile_call(global_state: GlobalState):
to = global_state.mstate.stack[-2] # type: BitVec to = global_state.mstate.stack[-2] # type: BitVec
constraints = copy(global_state.mstate.constraints)
constraints += [
Or(
to < symbol_factory.BitVecVal(1, 256),
to > symbol_factory.BitVecVal(16, 256),
)
]
try: try:
constraints = copy(global_state.mstate.constraints)
constraints += [
Or(
to < symbol_factory.BitVecVal(1, 256),
to > symbol_factory.BitVecVal(16, 256),
)
]
solver.get_model(constraints) solver.get_model(constraints)
return False return False
except UnsatError: except UnsatError:

Loading…
Cancel
Save