Skip to content

Commit dd48227

Browse files
fixes
1 parent 485c8d5 commit dd48227

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/WeEthModule.sol

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ contract WeEthModule is AccessControlEnumerableUpgradeable, UUPSUpgradeable {
2222

2323
address public almProxy;
2424

25+
uint256[49] private __gap;
26+
2527
/**********************************************************************************************/
2628
/*** Initialization ***/
2729
/**********************************************************************************************/
@@ -33,6 +35,9 @@ contract WeEthModule is AccessControlEnumerableUpgradeable, UUPSUpgradeable {
3335
function initialize(address admin, address _almProxy) external initializer {
3436
require(_almProxy != address(0), "WeEthModule/invalid-alm-proxy");
3537

38+
__AccessControlEnumerable_init();
39+
__UUPSUpgradeable_init();
40+
3641
_grantRole(DEFAULT_ADMIN_ROLE, admin);
3742

3843
almProxy = _almProxy;

test/mainnet-fork/weETH.t.sol

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ interface IWithdrawRequestNFTLike {
2222
function roleRegistry() external view returns (address);
2323
}
2424

25-
interface IWeEthModuleLike {
26-
function initialize(address admin, address _almProxy) external;
27-
}
28-
2925
contract MainnetControllerWeETHTestBase is ForkTestBase {
3026

3127
IWEETHLike weETH = IWEETHLike(Ethereum.WEETH);

0 commit comments

Comments
 (0)