diff --git a/mythril/laser/ethereum/state.py b/mythril/laser/ethereum/state.py index 19394ffa..b29a0680 100644 --- a/mythril/laser/ethereum/state.py +++ b/mythril/laser/ethereum/state.py @@ -160,13 +160,14 @@ class GlobalState: class WorldState: """ - The WorldState class represents the world state as described in the yellowpaper + The WorldState class represents the world state as described in the yellow paper """ def __init__(self): """ Constructor for the world state. Initializes the accounts record """ self.accounts = {} + self.node = None def __getitem__(self, item): """