Skip to content

Commit 5f34943

Browse files
committed
fix incentives order
1 parent 59e5bf4 commit 5f34943

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

contracts/misc/UiPoolDataProvider.sol

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)