Skip to content

Commit

Permalink
Make freshBool return bool instead of uint256 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanCoRo authored Oct 18, 2024
1 parent 61a5df7 commit 9b70241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IKontrolCheatsBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ interface KontrolCheatsBase {
// Returns a symbolic unsigned integer
function freshUInt(uint8) external view returns (uint256);
// Returns a symbolic boolean value
function freshBool() external view returns (uint256);
function freshBool() external view returns (bool);
// Returns a symbolic byte array
function freshBytes(uint256) external view returns (bytes memory);
// Returns a symbolic address
Expand Down

0 comments on commit 9b70241

Please sign in to comment.