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
If this is a bug report, please fill in the following sections.
If this is a feature request, delete and describe what you would like with examples.
What was wrong?
The following code attempts to decode data using an ABI that is not quite correct. The correct ABI should be ['uint256', 'int128[7]', 'bytes', 'int128[3][3]', 'uint256', 'uint256']. When executed, it results in an OverflowError instead of a helpful exception message.
When we are about to push a new frame onto the decoding stream we should first sanity check the value, and if the value is beyond the end of the stream, we should raise a more intelligent error message.
The text was updated successfully, but these errors were encountered:
If this is a bug report, please fill in the following sections.
If this is a feature request, delete and describe what you would like with examples.
What was wrong?
The following code attempts to decode data using an ABI that is not quite correct. The correct ABI should be
['uint256', 'int128[7]', 'bytes', 'int128[3][3]', 'uint256', 'uint256']
. When executed, it results in anOverflowError
instead of a helpful exception message.How can it be fixed?
When we are about to push a new frame onto the decoding stream we should first sanity check the value, and if the value is beyond the end of the stream, we should raise a more intelligent error message.
The text was updated successfully, but these errors were encountered: