|
|
@ -917,7 +917,7 @@ class Instruction: |
|
|
|
value, |
|
|
|
value, |
|
|
|
environment.origin, |
|
|
|
environment.origin, |
|
|
|
calldata_type=call_data_type) |
|
|
|
calldata_type=call_data_type) |
|
|
|
new_global_state = GlobalState(global_state.accounts, callee_environment, MachineState(gas)) |
|
|
|
new_global_state = GlobalState(global_state.accounts, callee_environment, global_state.node, MachineState(gas)) |
|
|
|
new_global_state.mstate.depth = global_state.mstate.depth + 1 |
|
|
|
new_global_state.mstate.depth = global_state.mstate.depth + 1 |
|
|
|
new_global_state.mstate.constraints = copy(global_state.mstate.constraints) |
|
|
|
new_global_state.mstate.constraints = copy(global_state.mstate.constraints) |
|
|
|
return [global_state] |
|
|
|
return [global_state] |
|
|
@ -944,7 +944,7 @@ class Instruction: |
|
|
|
environment.caller = environment.address |
|
|
|
environment.caller = environment.address |
|
|
|
environment.calldata = call_data |
|
|
|
environment.calldata = call_data |
|
|
|
|
|
|
|
|
|
|
|
new_global_state = GlobalState(global_state.accounts, environment, MachineState(gas)) |
|
|
|
new_global_state = GlobalState(global_state.accounts, environment, global_state.node, MachineState(gas)) |
|
|
|
new_global_state.mstate.depth = global_state.mstate.depth + 1 |
|
|
|
new_global_state.mstate.depth = global_state.mstate.depth + 1 |
|
|
|
new_global_state.mstate.constraints = copy(global_state.mstate.constraints) |
|
|
|
new_global_state.mstate.constraints = copy(global_state.mstate.constraints) |
|
|
|
|
|
|
|
|
|
|
@ -972,7 +972,7 @@ class Instruction: |
|
|
|
environment.code = callee_account.code |
|
|
|
environment.code = callee_account.code |
|
|
|
environment.calldata = call_data |
|
|
|
environment.calldata = call_data |
|
|
|
|
|
|
|
|
|
|
|
new_global_state = GlobalState(global_state.accounts, environment, MachineState(gas)) |
|
|
|
new_global_state = GlobalState(global_state.accounts, environment, global_state.node, MachineState(gas)) |
|
|
|
new_global_state.mstate.depth = global_state.mstate.depth + 1 |
|
|
|
new_global_state.mstate.depth = global_state.mstate.depth + 1 |
|
|
|
new_global_state.mstate.constraints = copy(global_state.mstate.constraints) |
|
|
|
new_global_state.mstate.constraints = copy(global_state.mstate.constraints) |
|
|
|
|
|
|
|
|
|
|
|