diff --git a/test/invariant/fuzz/Setup.t.sol b/test/invariant/fuzz/Setup.t.sol index ce4fb87c..ec97f53b 100644 --- a/test/invariant/fuzz/Setup.t.sol +++ b/test/invariant/fuzz/Setup.t.sol @@ -71,8 +71,6 @@ contract Setup is Actors, Pools { // Deploy strategies implementations _initImplementations(address(allo)); - // strategy_directAllocation = new DirectAllocationStrategy(address(allo)); - // Deploy token token = ERC20(address(new FuzzERC20())); diff --git a/test/invariant/fuzz/helpers/Pools.t.sol b/test/invariant/fuzz/helpers/Pools.t.sol index cf7b15ec..ff1cac5b 100644 --- a/test/invariant/fuzz/helpers/Pools.t.sol +++ b/test/invariant/fuzz/helpers/Pools.t.sol @@ -31,8 +31,6 @@ contract Pools is Utils { uint256[] internal ghost_poolIds; mapping(uint256 _poolId => address _poolAdmin) ghost_poolAdmins; - // mapping(uint256 _poolId => PoolStrategies _strategy) internal _poolStrategy; - mapping(PoolStrategies _strategy => address _implementation) internal _strategyImplementations; @@ -63,7 +61,6 @@ contract Pools is Utils { } function _recordPool(uint256 _poolId, PoolStrategies _strategy) internal { - // _poolStrategy[_poolId] = _strategy; ghost_poolIds.push(_poolId); }