You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the storage layout is generated each Type of kind struct or array gets an astId appended to its name (i.e. t_struct(Delegation)11437_storage where the astId is 11437). As a codebase grows the astId for a given struct might change and that throws off our typeHash calculation, generating false positives.
We need to trim those astId from all types and type definitions to avoid this issue.
The text was updated successfully, but these errors were encountered:
When the storage layout is generated each Type of kind
struct
orarray
gets anastId
appended to its name (i.e.t_struct(Delegation)11437_storage
where theastId
is 11437). As a codebase grows theastId
for a given struct might change and that throws off ourtypeHash
calculation, generating false positives.We need to trim those
astId
from all types and type definitions to avoid this issue.The text was updated successfully, but these errors were encountered: