fix: SafeCast => V4SafeCast to fix build issue
This commit is contained in:
@@ -19,7 +19,7 @@ import {IHooks} from "@uniswap/v4-core/src/interfaces/IHooks.sol";
|
|||||||
import {PathKey} from "@uniswap/v4-periphery/src/libraries/PathKey.sol";
|
import {PathKey} from "@uniswap/v4-periphery/src/libraries/PathKey.sol";
|
||||||
import {IUnlockCallback} from
|
import {IUnlockCallback} from
|
||||||
"@uniswap/v4-core/src/interfaces/callback/IUnlockCallback.sol";
|
"@uniswap/v4-core/src/interfaces/callback/IUnlockCallback.sol";
|
||||||
import {SafeCast} from "@uniswap/v4-core/src/libraries/SafeCast.sol";
|
import {SafeCast as V4SafeCast} from "@uniswap/v4-core/src/libraries/SafeCast.sol";
|
||||||
import {TransientStateLibrary} from
|
import {TransientStateLibrary} from
|
||||||
"@uniswap/v4-core/src/libraries/TransientStateLibrary.sol";
|
"@uniswap/v4-core/src/libraries/TransientStateLibrary.sol";
|
||||||
import "../RestrictTransferFrom.sol";
|
import "../RestrictTransferFrom.sol";
|
||||||
@@ -42,7 +42,7 @@ contract UniswapV4Executor is
|
|||||||
{
|
{
|
||||||
using SafeERC20 for IERC20;
|
using SafeERC20 for IERC20;
|
||||||
using CurrencyLibrary for Currency;
|
using CurrencyLibrary for Currency;
|
||||||
using SafeCast for *;
|
using V4SafeCast for *;
|
||||||
using TransientStateLibrary for IPoolManager;
|
using TransientStateLibrary for IPoolManager;
|
||||||
|
|
||||||
IPoolManager public immutable poolManager;
|
IPoolManager public immutable poolManager;
|
||||||
|
|||||||
Reference in New Issue
Block a user