Merge branch 'enhance/886' of github.com:ConsenSys/mythril into enhance/886

pull/994/head
Nikhil Parasaram 6 years ago
commit ecbd6711e1
  1. 5
      mythril/analysis/modules/external_calls.py

@ -32,7 +32,6 @@ def _analyze_state(state):
""" """
gas = state.mstate.stack[-1] gas = state.mstate.stack[-1]
to = state.mstate.stack[-2] to = state.mstate.stack[-2]
issues = []
address = state.get_current_instruction()["address"] address = state.get_current_instruction()["address"]
call = get_call_from_state(state) call = get_call_from_state(state)
@ -105,8 +104,8 @@ def _analyze_state(state):
except UnsatError: except UnsatError:
log.debug("[EXTERNAL_CALLS] No model found.") log.debug("[EXTERNAL_CALLS] No model found.")
return [] return []
issues.append(issue)
return issues return [issue]
class ExternalCalls(DetectionModule): class ExternalCalls(DetectionModule):

Loading…
Cancel
Save