Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ref: foundry-rs/foundry#9267 Adds the following overloads for `vm.mockCall`. ```solidity function mockCall(address callee, bytes4 data, bytes calldata returnData) external; function mockCall(address callee, uint256 msgValue, bytes4 data, bytes calldata returnData) external; function mockCallRevert(address callee, uint256 msgValue, bytes4 data, bytes calldata revertData) external; function mockCallRevert(address callee, bytes4 data, bytes calldata revertData) external; ```
- Loading branch information