Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support signed int random cheatcodes #890

Open
palinatolmach opened this issue Nov 20, 2024 · 0 comments
Open

Support signed int random cheatcodes #890

palinatolmach opened this issue Nov 20, 2024 · 0 comments

Comments

@palinatolmach
Copy link
Collaborator

Follow up to #877.

Cheatcodes generating fresh signed ints

    /// Returns a random `int256` value.
    function randomInt() external view returns (int256);

    /// Returns a random `int256` value of given bits.
    function randomInt(uint256 bits) external view returns (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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant