Skip to content

Commit b02754f

Browse files
committed
contract typos fix
1 parent 10cde65 commit b02754f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

contracts/interfaces/external/IGUniPool.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: GPL-3.0
22

33
/*
4-
Copyright 2020 Set Labs Inc.
4+
Copyright 2022 Set Labs Inc.
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.
77
You may obtain a copy of the License at

contracts/protocol/integration/amm/ArrakisUniswapV3AmmAdapter.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ contract ArrakisUniswapV3AmmAdapter is IAmmAdapter {
4040
address public immutable router;
4141

4242
// UniswapV3 factory contract
43-
IUniswapV3Factory public immutable uniV3factory;
43+
IUniswapV3Factory public immutable uniV3Factory;
4444

4545
// Internal function string for adding liquidity
4646
string internal constant ADD_LIQUIDITY =
@@ -59,7 +59,7 @@ contract ArrakisUniswapV3AmmAdapter is IAmmAdapter {
5959
*/
6060
constructor(address _router, address _uniV3Factory) public {
6161
router = _router;
62-
uniV3factory = IUniswapV3Factory(_uniV3Factory);
62+
uniV3Factory = IUniswapV3Factory(_uniV3Factory);
6363
}
6464

6565
/* ============ External Getter Functions ============ */
@@ -258,7 +258,7 @@ contract ArrakisUniswapV3AmmAdapter is IAmmAdapter {
258258
// Make sure that the pool address returned by the factory
259259
// matches uniswapV3 pool address stored in the provided arrakis pool
260260
if(
261-
uniV3factory.getPool(_components[0], _components[1], uniFee) != address(uniV3PairPool)
261+
uniV3Factory.getPool(_components[0], _components[1], uniFee) != address(uniV3PairPool)
262262
) {
263263
return false;
264264
}

0 commit comments

Comments
 (0)