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
Assert error messages whenever an overflow is encountered. Currently, for example, if you pass in the value 569 for an argument of type UInt8 the resulting deserialized value will be 57. 569 - (256 * 2) = 57.
We should instead throw an error saying that the value given is not within the valid range.
The text was updated successfully, but these errors were encountered:
Assert error messages whenever an overflow is encountered. Currently, for example, if you pass in the value
569
for an argument of typeUInt8
the resulting deserialized value will be57
.569 - (256 * 2) = 57
.We should instead throw an error saying that the value given is not within the valid range.
The text was updated successfully, but these errors were encountered: