From 14e1c4732821b61ab8cd400d88a49e29001df22a Mon Sep 17 00:00:00 2001 From: James Niken Date: Tue, 20 May 2025 22:25:35 +0200 Subject: [PATCH] replace dead solmate link StdUtils.sol --- src/StdUtils.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StdUtils.sol b/src/StdUtils.sol index 7106960bb..d932a1c15 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);