Skip to content

Commit

Permalink
run forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
0xLightt committed Sep 4, 2024
1 parent d08d82d commit 685d591
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
8 changes: 1 addition & 7 deletions src/TalosStrategyVanilla.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,7 @@ library DeployVanilla {
bytes32 _salt
) external returns (TalosBaseStrategy) {
bytes32 salt = keccak256(abi.encodePacked(pool, optimizer, strategyManager, owner, _salt));
return new TalosStrategyVanilla{salt: salt}(
pool,
optimizer,
nonfungiblePositionManager,
strategyManager,
owner
);
return new TalosStrategyVanilla{salt: salt}(pool, optimizer, nonfungiblePositionManager, strategyManager, owner);
}
}

Expand Down
5 changes: 1 addition & 4 deletions test/mocks/MockBoostAggregatorFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,5 @@ pragma solidity ^0.8.0;
import "@talos/factories/BoostAggregatorFactory.sol";

contract MockBoostAggregatorFactory is BoostAggregatorFactory {

constructor(
UniswapV3Staker _uniswapV3Staker
) BoostAggregatorFactory(_uniswapV3Staker) {}
constructor(UniswapV3Staker _uniswapV3Staker) BoostAggregatorFactory(_uniswapV3Staker) {}
}
1 change: 0 additions & 1 deletion test/mocks/MockOptimizerFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ pragma solidity ^0.8.0;
import "@talos/factories/OptimizerFactory.sol";

contract MockOptimizerFactory is OptimizerFactory {

constructor() OptimizerFactory() {}
}

0 comments on commit 685d591

Please sign in to comment.