File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -138,21 +138,21 @@ contract UiPoolDataProvider is IUiPoolDataProvider {
138138 // incentives
139139 if (address (0 ) != address (incentivesController)) {
140140 (
141+ reserveData.aTokenIncentivesIndex,
141142 reserveData.aEmissionPerSecond,
142- reserveData.aIncentivesLastUpdateTimestamp,
143- reserveData.aTokenIncentivesIndex
143+ reserveData.aIncentivesLastUpdateTimestamp
144144 ) = incentivesController.getAssetData (reserveData.aTokenAddress);
145145
146146 (
147+ reserveData.sTokenIncentivesIndex,
147148 reserveData.sEmissionPerSecond,
148- reserveData.sIncentivesLastUpdateTimestamp,
149- reserveData.sTokenIncentivesIndex
149+ reserveData.sIncentivesLastUpdateTimestamp
150150 ) = incentivesController.getAssetData (reserveData.stableDebtTokenAddress);
151151
152152 (
153+ reserveData.vTokenIncentivesIndex,
153154 reserveData.vEmissionPerSecond,
154- reserveData.vIncentivesLastUpdateTimestamp,
155- reserveData.vTokenIncentivesIndex
155+ reserveData.vIncentivesLastUpdateTimestamp
156156 ) = incentivesController.getAssetData (reserveData.variableDebtTokenAddress);
157157 }
158158 }
You can’t perform that action at this time.
0 commit comments