diff --git a/contracts/misc/UiPoolDataProvider.sol b/contracts/misc/UiPoolDataProvider.sol index f52d8ff5..65291dfc 100644 --- a/contracts/misc/UiPoolDataProvider.sol +++ b/contracts/misc/UiPoolDataProvider.sol @@ -139,22 +139,22 @@ contract UiPoolDataProvider is IUiPoolDataProvider { if (address(0) != address(incentivesController)) { ( reserveData.aEmissionPerSecond, - reserveData.aTokenIncentivesIndex - reserveData.aIncentivesLastUpdateTimestamp, + reserveData.aTokenIncentivesIndex, + reserveData.aIncentivesLastUpdateTimestamp // ) = incentivesController.getAssetData(reserveData.aTokenAddress); TODO: temp fix ) = incentivesController.assets(reserveData.aTokenAddress); ( reserveData.sEmissionPerSecond, - reserveData.sTokenIncentivesIndex - reserveData.sIncentivesLastUpdateTimestamp, + reserveData.sTokenIncentivesIndex, + reserveData.sIncentivesLastUpdateTimestamp // ) = incentivesController.getAssetData(reserveData.stableDebtTokenAddress); TODO: temp fix ) = incentivesController.assets(reserveData.stableDebtTokenAddress); ( reserveData.vEmissionPerSecond, - reserveData.vTokenIncentivesIndex - reserveData.vIncentivesLastUpdateTimestamp, + reserveData.vTokenIncentivesIndex, + reserveData.vIncentivesLastUpdateTimestamp // ) = incentivesController.getAssetData(reserveData.variableDebtTokenAddress); TODO: temp fix ) = incentivesController.assets(reserveData.variableDebtTokenAddress); }