From da162955c9a2fd0b4ae0eb6f2d3334256889247a Mon Sep 17 00:00:00 2001 From: taayyohh Date: Sat, 24 Aug 2024 16:34:51 -0400 Subject: [PATCH] rename --- src/manager/IManager.sol | 2 +- src/manager/Manager.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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,