add execution info class

pull/1411/head
Joran Honig 4 years ago
parent 4e7152f2cd
commit 8a7c43d038
  1. 11
      mythril/laser/execution_info.py

@ -0,0 +1,11 @@
from abc import ABC, abstractmethod
class ExecutionInfo(ABC):
@abstractmethod
def as_dict(self):
"""Returns a dictionary with the execution info contained in this object
The returned dictionary only uses primitive types.
"""
pass
Loading…
Cancel
Save