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
As the upper bound of the smart contract state size is around 65,000 items of type Cell, it constrains the storage limit of maps to be about 30,000 key-value pairs for the whole contract.
We should test doc statements like the above.
So, we need tests for at least the following items:
maximum map size
maximum cell number
maximum number of struct fields
The text was updated successfully, but these errors were encountered:
Map size and the number of struct fields depend on the types of the fields/values. Also the max map size can vary depending on the keys due to how the patricia tree works under the hood.
For instance, the docs say:
We should test doc statements like the above.
So, we need tests for at least the following items:
The text was updated successfully, but these errors were encountered: