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