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
We disalllowed running fuzz tests in wasm due to lack of i128 support however we've since restricted the type system to only allow u64s as the maximum integer type. We then don't need to use i128s at all and can remove this conditional compilation by changing the UintStrategy to use u64s
The text was updated successfully, but these errors were encountered:
We disalllowed running fuzz tests in wasm due to lack of
i128
support however we've since restricted the type system to only allowu64
s as the maximum integer type. We then don't need to usei128
s at all and can remove this conditional compilation by changing theUintStrategy
to useu64
sThe text was updated successfully, but these errors were encountered: