add constructor to symbolic summary class

feature/summary
Joran Honig 5 years ago
parent d8d9520822
commit 91f2d96179
  1. 16
      mythril/laser/ethereum/plugins/implementations/summary/core.py

@ -35,8 +35,20 @@ class SymbolicSummary:
A symbolic summary is an awesome construct that allows mythril to record and re-use partial analysis results A symbolic summary is an awesome construct that allows mythril to record and re-use partial analysis results
""" """
def __init__():
pass def __init__(
self,
storage_effect,
condition,
return_value,
entry,
exit,
):
self.storage_effect = storage_effect
self.condition = condition
self.return_value = return_value
self.entry = entry
self.exit = exit
class SymbolicSummaryPlugin(LaserPlugin): class SymbolicSummaryPlugin(LaserPlugin):

Loading…
Cancel
Save