|
|
|
@ -9,6 +9,7 @@ from mythril.laser.ethereum.cfg import Node |
|
|
|
|
from mythril.laser.ethereum.state.environment import Environment |
|
|
|
|
from mythril.laser.ethereum.state.machine_state import MachineState |
|
|
|
|
from mythril.laser.ethereum.state.annotation import StateAnnotation |
|
|
|
|
from mythril.laser.ethereum.evm_exceptions import ProgramCounterException |
|
|
|
|
|
|
|
|
|
if TYPE_CHECKING: |
|
|
|
|
from mythril.laser.ethereum.state.world_state import WorldState |
|
|
|
@ -88,6 +89,10 @@ class GlobalState: |
|
|
|
|
""" |
|
|
|
|
|
|
|
|
|
instructions = self.environment.code.instruction_list |
|
|
|
|
if self.mstate.pc >= len(instructions): |
|
|
|
|
raise ProgramCounterException( |
|
|
|
|
"PC: {} can not be reached.".format(self.mstate.pc) |
|
|
|
|
) |
|
|
|
|
return instructions[self.mstate.pc] |
|
|
|
|
|
|
|
|
|
@property |
|
|
|
|