Add a logger in account.py

pull/1177/head
palkeo 5 years ago
parent 83f0cc966d
commit a2a85081f6
  1. 3
      mythril/laser/ethereum/state/account.py

@ -2,6 +2,7 @@
This includes classes representing accounts and their storage.
"""
import logging
from copy import copy, deepcopy
from typing import Any, Dict, Union, Tuple, cast
@ -19,6 +20,8 @@ from mythril.laser.smt import (
from mythril.disassembler.disassembly import Disassembly
from mythril.laser.smt import symbol_factory
log = logging.getLogger(__name__)
class StorageRegion:
def __getitem__(self, item):

Loading…
Cancel
Save