Skip to content

Commit a1fa83b

Browse files
committed
fix: fix storage layout
1 parent f18ac88 commit a1fa83b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/contracts/strategies/StrategyFactoryStorage.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ abstract contract StrategyFactoryStorage is IStrategyFactory {
1212
/// @notice Upgradeable beacon used for baseline strategies deployed by this contract.
1313
IBeacon public strategyBeacon;
1414

15-
/// @notice Upgradeable beacon used for duration vault strategies deployed by this contract.
16-
IBeacon public durationVaultBeacon;
17-
1815
/// @notice Mapping token => Strategy contract for the token
1916
/// The strategies in this mapping are deployed by the StrategyFactory.
2017
/// The factory can only deploy a single strategy per token address
@@ -27,6 +24,9 @@ abstract contract StrategyFactoryStorage is IStrategyFactory {
2724
/// @notice Mapping token => Whether or not a strategy can be deployed for the token
2825
mapping(IERC20 => bool) public isBlacklisted;
2926

27+
/// @notice Upgradeable beacon used for duration vault strategies deployed by this contract.
28+
IBeacon public durationVaultBeacon;
29+
3030
/// @notice Mapping token => all duration vault strategies deployed for the token.
3131
mapping(IERC20 => IDurationVaultStrategy[]) internal durationVaultsByToken;
3232

0 commit comments

Comments
 (0)