Skip to content

Commit

Permalink
add Currency class and fix override error
Browse files Browse the repository at this point in the history
  • Loading branch information
tinaszheng committed Nov 21, 2023
1 parent 662dea8 commit c413068
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/NonfungiblePositionManagerV4.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import {PoolKey} from "@uniswap/v4-core/contracts/types/PoolKey.sol";
import {PoolKey} from "@uniswap/v4-core/contracts/types/PoolKey.sol";
import {IPoolManager} from "@uniswap/v4-core/contracts/interfaces/IPoolManager.sol";
import {Currency} from "@uniswap/v4-core/contracts/types/Currency.sol";

import {INonfungiblePositionManagerV4} from "./interfaces/INonfungiblePositionManagerV4.sol";
import {ERC721Permit} from "./base/ERC721Permit.sol";
Expand All @@ -24,7 +25,7 @@ contract NonfungiblePositionManagerV4 is
SelfPermit,
Multicall
{
IPoolManager public immutable override poolManager;
IPoolManager public immutable poolManager;

// details about the Uniswap position
struct Position {
Expand Down

0 comments on commit c413068

Please sign in to comment.