diff --git a/src/StdUtils.sol b/src/StdUtils.sol index 7106960b..d932a1c1 100644 --- a/src/StdUtils.sol +++ b/src/StdUtils.sol @@ -95,7 +95,7 @@ abstract contract StdUtils { } /// @dev Compute the address a contract will be deployed at for a given deployer address and nonce - /// @notice adapted from Solmate implementation (https://github.com/Rari-Capital/solmate/blob/main/src/utils/LibRLP.sol) + /// @notice adapted from Solmate implementation (https://github.com/transmissions11/solmate/blob/main/src/utils/LibString.sol) function computeCreateAddress(address deployer, uint256 nonce) internal pure virtual returns (address) { console2_log_StdUtils("computeCreateAddress is deprecated. Please use vm.computeCreateAddress instead."); return vm.computeCreateAddress(deployer, nonce);