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
The i256::checked_mul works by computing the absolute values, unfortunately this runs into an issue with i256::MIN as the absolute value overflows i256
To Reproduce
i256::MIN.checked_mul(i256::ONE).unwrap()
Expected behavior
The above should not panic
Additional context
The text was updated successfully, but these errors were encountered:
Describe the bug
The i256::checked_mul works by computing the absolute values, unfortunately this runs into an issue with
i256::MIN
as the absolute value overflowsi256
To Reproduce
Expected behavior
The above should not panic
Additional context
The text was updated successfully, but these errors were encountered: