Skip to content

Commit

Permalink
fix: lint fixes only
Browse files Browse the repository at this point in the history
  • Loading branch information
sanchaymittal committed Jun 9, 2024
1 parent 1bad1f8 commit 49c7a15
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion script/child/DeployQWUniswapV3Stable.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ contract DeployQWUniswapV3Stable is Script, DeployBase {
qwRegistry = QWRegistry(registryAddr);

// Deploy QwChild
qWUniswapV3Stable = new QWUniswapV3Stable(baseParams.qwManager, configParams.nonFungiblePositionManager, configParams.uniswapFactory, configParams.weth9, configParams.uniswapV3StablePool);
qWUniswapV3Stable = new QWUniswapV3Stable(
baseParams.qwManager,
configParams.nonFungiblePositionManager,
configParams.uniswapFactory,
configParams.weth9,
configParams.uniswapV3StablePool
);

// Register Child in registry
qwRegistry.registerChild(address(qWUniswapV3Stable));
Expand Down
5 changes: 3 additions & 2 deletions test/integration/child/QWUniswapV3Stable.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ contract UniswapV3stableIntegration is IntegrationBase {
address _factory = 0x1F98431c8aD98523631AE4a59f267346ea31F984;
address _weth = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
vm.startPrank(_owner);
_QWUniswapV3Stable =
new QWUniswapV3Stable(address(_qwManager), address(_nonfungiblePositionManager), _factory, _weth, address(_uniswapUSDCUSDTPool));
_QWUniswapV3Stable = new QWUniswapV3Stable(
address(_qwManager), address(_nonfungiblePositionManager), _factory, _weth, address(_uniswapUSDCUSDTPool)
);
_qwRegistry.registerChild(address(_QWUniswapV3Stable));
vm.stopPrank();

Expand Down

0 comments on commit 49c7a15

Please sign in to comment.