File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments