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
In src/lib where we store majority of our blockchain's storages, we have all types separated, making code harder to manage. This can cause storage integrity problems. Values like min_burn and max_burn (and many others, follow the same logic) should be together in a struct. Such that the minimum can not be larger than the maximum.
The text was updated successfully, but these errors were encountered:
In
src/lib
where we store majority of our blockchain's storages, we have all types separated, making code harder to manage. This can cause storage integrity problems. Values likemin_burn
andmax_burn
(and many others, follow the same logic) should be together in a struct. Such that the minimum can not be larger than the maximum.The text was updated successfully, but these errors were encountered: