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 @@ -133,21 +133,21 @@ contract UiPoolDataProvider is IUiPoolDataProvider {
133133 // incentives
134134 if (address (0 ) != address (incentivesController)) {
135135 (
136+ reserveData.aTokenIncentivesIndex,
136137 reserveData.aEmissionPerSecond,
137- reserveData.aIncentivesLastUpdateTimestamp,
138- reserveData.aTokenIncentivesIndex
138+ reserveData.aIncentivesLastUpdateTimestamp
139139 ) = incentivesController.getAssetData (reserveData.aTokenAddress);
140140
141141 (
142+ reserveData.sTokenIncentivesIndex,
142143 reserveData.sEmissionPerSecond,
143- reserveData.sIncentivesLastUpdateTimestamp,
144- reserveData.sTokenIncentivesIndex
144+ reserveData.sIncentivesLastUpdateTimestamp
145145 ) = incentivesController.getAssetData (reserveData.stableDebtTokenAddress);
146146
147147 (
148+ reserveData.vTokenIncentivesIndex,
148149 reserveData.vEmissionPerSecond,
149- reserveData.vIncentivesLastUpdateTimestamp,
150- reserveData.vTokenIncentivesIndex
150+ reserveData.vIncentivesLastUpdateTimestamp
151151 ) = incentivesController.getAssetData (reserveData.variableDebtTokenAddress);
152152 }
153153
You can’t perform that action at this time.
0 commit comments