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
/// Returns a random `int256` value.function randomInt() externalviewreturns (int256);
/// Returns a random `int256` value of given bits.function randomInt(uint256bits) externalviewreturns (int256);
are challenging to implement because of signed int specifics that cause branching during execution.
We have encountered a relevant (unresolved) issue previously when trying to implement assert functions that involve signed ints too: #559.
The text was updated successfully, but these errors were encountered:
Follow up to #877.
Cheatcodes generating fresh signed ints
are challenging to implement because of signed int specifics that cause branching during execution.
We have encountered a relevant (unresolved) issue previously when trying to implement
assert
functions that involve signed ints too: #559.The text was updated successfully, but these errors were encountered: