Skip to content

Commit c49bac2

Browse files
committed
fix: missing commas at UiPoolDataProvider.sol
1 parent de1ab95 commit c49bac2

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
@@ -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

Comments
 (0)