From ae0d34e699630eebb56360b663fe00b00a176c65 Mon Sep 17 00:00:00 2001 From: Harsh Pandey Date: Fri, 19 May 2023 16:36:55 +0530 Subject: [PATCH] fix: AaveV3 import --- src/AaveV3.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AaveV3.sol b/src/AaveV3.sol index 2bf4246b..fa64788c 100644 --- a/src/AaveV3.sol +++ b/src/AaveV3.sol @@ -13,7 +13,7 @@ import {IPoolDataProvider} from 'aave-v3-core/contracts/interfaces/IPoolDataProv import {IDefaultInterestRateStrategy} from 'aave-v3-core/contracts/interfaces/IDefaultInterestRateStrategy.sol'; import {IReserveInterestRateStrategy} from 'aave-v3-core/contracts/interfaces/IReserveInterestRateStrategy.sol'; import {IPoolDataProvider as IAaveProtocolDataProvider} from 'aave-v3-core/contracts/interfaces/IPoolDataProvider.sol'; -import {AggregatorInterface} from './common/AggregatorInterface.sol'; +import {AggregatorInterface} from 'aave-v3-core/contracts/dependencies/chainlink/AggregatorInterface.sol'; interface IACLManager is BasicIACLManager { function hasRole(bytes32 role, address account) external view returns (bool);