@@ -139,22 +139,22 @@ contract UiPoolDataProvider is IUiPoolDataProvider {
139139 if (address (0 ) != address (incentivesController)) {
140140 (
141141 reserveData.aEmissionPerSecond,
142- reserveData.aTokenIncentivesIndex
143- reserveData.aIncentivesLastUpdateTimestamp,
142+ reserveData.aTokenIncentivesIndex,
143+ reserveData.aIncentivesLastUpdateTimestamp
144144 // ) = incentivesController.getAssetData(reserveData.aTokenAddress); TODO: temp fix
145145 ) = incentivesController.assets (reserveData.aTokenAddress);
146146
147147 (
148148 reserveData.sEmissionPerSecond,
149- reserveData.sTokenIncentivesIndex
150- reserveData.sIncentivesLastUpdateTimestamp,
149+ reserveData.sTokenIncentivesIndex,
150+ reserveData.sIncentivesLastUpdateTimestamp
151151 // ) = incentivesController.getAssetData(reserveData.stableDebtTokenAddress); TODO: temp fix
152152 ) = incentivesController.assets (reserveData.stableDebtTokenAddress);
153153
154154 (
155155 reserveData.vEmissionPerSecond,
156- reserveData.vTokenIncentivesIndex
157- reserveData.vIncentivesLastUpdateTimestamp,
156+ reserveData.vTokenIncentivesIndex,
157+ reserveData.vIncentivesLastUpdateTimestamp
158158 // ) = incentivesController.getAssetData(reserveData.variableDebtTokenAddress); TODO: temp fix
159159 ) = incentivesController.assets (reserveData.variableDebtTokenAddress);
160160 }
0 commit comments