From 58e2986a0aabc5c28188a0a2b1a960a0b8ba51ae Mon Sep 17 00:00:00 2001 From: Antonio Viggiano Date: Mon, 25 Mar 2024 17:17:44 -0300 Subject: [PATCH] Update Hevm.sol --- contracts/util/Hevm.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/util/Hevm.sol b/contracts/util/Hevm.sol index a18ed05..e654198 100644 --- a/contracts/util/Hevm.sol +++ b/contracts/util/Hevm.sol @@ -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);