fix typo in incentives controller env

This commit is contained in:
andyk 2021-03-26 15:06:49 +02:00
parent 2028631ad7
commit ab8c9a22a9

View File

@ -46,7 +46,7 @@ contract UiPoolDataProvider is IUiPoolDataProvider {
function getReservesData(
ILendingPoolAddressesProvider provider,
IAaveIncentivesController incentivesControllerAddr,
IAaveIncentivesController incentivesController,
address user
)
external
@ -179,7 +179,7 @@ contract UiPoolDataProvider is IUiPoolDataProvider {
function getUserIncentivesBalance(
ILendingPoolAddressesProvider provider,
IAaveIncentivesController incentivesControllerAddr,
IAaveIncentivesController incentivesController,
address user
) external view override returns (IncentivesDataUser memory) {
ILendingPool lendingPool = ILendingPool(provider.getLendingPool());