Add missing line to fix recursive intializaton :)

fix/circleci-config
Bernhard Mueller 6 years ago
parent 560eab5304
commit 9b960a2985
  1. 1
      mythril/analysis/modules/delegatecall.py

@ -32,6 +32,7 @@ class DelegateCallAnnotation(StateAnnotation):
"retval_{}".format(call_state.get_current_instruction()["address"]), 256 "retval_{}".format(call_state.get_current_instruction()["address"]), 256
) )
def _copy__(self):
return DelegateCallAnnotation(self.call_state, copy(self.constraints)) return DelegateCallAnnotation(self.call_state, copy(self.constraints))
def get_issue(self, global_state: GlobalState, transaction_sequence: Dict) -> Issue: def get_issue(self, global_state: GlobalState, transaction_sequence: Dict) -> Issue:

Loading…
Cancel
Save