diff --git a/src/manager/IManager.sol b/src/manager/IManager.sol index 81d9ca0..f3debc8 100644 --- a/src/manager/IManager.sol +++ b/src/manager/IManager.sol @@ -177,7 +177,7 @@ interface IManager is IUUPS, IOwnable { /// @param governor The address to set as the governor of the Treasury. /// @param timelockDelay The timelock delay to be set in the Treasury. /// @return treasury The address of the deployed Treasury contract. - function deployAndInitializeTreasuryUsingCreate2( + function deployAndInitializeTreasury( bytes memory bytecode, bytes32 salt, address governor, diff --git a/src/manager/Manager.sol b/src/manager/Manager.sol index 78f6d69..9e4b352 100644 --- a/src/manager/Manager.sol +++ b/src/manager/Manager.sol @@ -301,7 +301,7 @@ contract Manager is IManager, VersionedContract, UUPS, Ownable, ManagerStorageV1 /// @param bytecode The bytecode of the Treasury contract /// @param governor The EOA to be set as the governor of the Treasury /// @param timelockDelay The timelock delay to be set in the Treasury - function deployAndInitializeTreasuryUsingCreate2( + function deployAndInitializeTreasury( bytes32 salt, bytes memory bytecode, address governor,