Skip to content

Commit

Permalink
Remove unused constants
Browse files Browse the repository at this point in the history
  • Loading branch information
tsudmi committed Sep 29, 2024
1 parent f9d0abc commit 10b7b1b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/StrategiesRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ import {IStrategiesRegistry} from './interfaces/IStrategiesRegistry.sol';
* @notice Defines the registry functionality that keeps track of Strategies and their settings
*/
contract StrategiesRegistry is Ownable2Step, IStrategiesRegistry {
uint256 private constant _maxPercent = 1e18;

/// @inheritdoc IStrategiesRegistry
mapping(address strategy => bool enabled) public strategies;

Expand Down
2 changes: 0 additions & 2 deletions src/leverage/AaveLeverageStrategy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ import {LeverageStrategy} from './LeverageStrategy.sol';
* @notice Defines the Aave leverage strategy functionality
*/
abstract contract AaveLeverageStrategy is LeverageStrategy {
uint256 private constant _wad = 1e18;

IPool private immutable _aavePool;
IPoolDataProvider private immutable _aavePoolDataProvider;
IScaledBalanceToken private immutable _aaveOsToken;
Expand Down

0 comments on commit 10b7b1b

Please sign in to comment.