diff --git a/slither/core/solidity_types/type_alias.py b/slither/core/solidity_types/type_alias.py index cb2d43de1..0a1f99d23 100644 --- a/slither/core/solidity_types/type_alias.py +++ b/slither/core/solidity_types/type_alias.py @@ -15,6 +15,7 @@ class TypeAlias(Type): self.name = name self.underlying_type = underlying_type + @property def storage_size(self) -> Tuple[int, bool]: return self.underlying_type.storage_size