Skip to content

Commit

Permalink
Merge pull request #54 from aviggiano/patch-3
Browse files Browse the repository at this point in the history
Fix typo in `deal` Hevm cheatcode
  • Loading branch information
glarregay-tob authored Mar 25, 2024
2 parents 2526765 + 58e2986 commit 4a328b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/util/Hevm.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface IHevm {
function assume(bool b) external;

// Sets the eth balance of usr to amt
function deal(uint256 usr, uint256 amt) external;
function deal(address usr, uint256 amt) external;

// Loads a storage slot from an address
function load(address where, bytes32 slot) external returns (bytes32);
Expand Down

0 comments on commit 4a328b8

Please sign in to comment.