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
Hi,
I have a question on the first require on the slice method.
Shouldn't this require(_length + 31 >= _length, "slice_overflow"); be require(_bytes.length + 31 >= _length, "slice_overflow"); to be meaningful?
The text was updated successfully, but these errors were encountered:
Hi,
I have a question on the first require on the slice method.
Shouldn't this
require(_length + 31 >= _length, "slice_overflow");
berequire(_bytes.length + 31 >= _length, "slice_overflow");
to be meaningful?The text was updated successfully, but these errors were encountered: