Merge remote-tracking branch 'upstream/master' into features/codecopy

pull/379/head
Joran Honig 6 years ago
commit f3863de661
  1. 2
      mythril/laser/ethereum/transaction.py

@ -42,7 +42,6 @@ class MessageCall:
self.origin,
calldata_type=CalldataType.SYMBOLIC,
)
new_node = Node(environment.active_account.contract_name)
evm.instructions_covered = [False for _ in environment.code.instruction_list]
@ -51,6 +50,7 @@ class MessageCall:
evm.edges.append(Edge(open_world_state.node.uid, new_node.uid, edge_type=JumpType.Transaction, condition=None))
global_state = GlobalState(open_world_state.accounts, environment, new_node)
global_state.environment.active_function_name = 'fallback()'
new_node.states.append(global_state)
evm.work_list.append(global_state)

Loading…
Cancel
Save