fix: missing commas at UiPoolDataProvider.sol

This commit is contained in:
kartojal 2021-10-04 19:11:10 +02:00
parent de1ab95318
commit c49bac2d93

View File

@ -139,22 +139,22 @@ contract UiPoolDataProvider is IUiPoolDataProvider {
if (address(0) != address(incentivesController)) { if (address(0) != address(incentivesController)) {
( (
reserveData.aEmissionPerSecond, reserveData.aEmissionPerSecond,
reserveData.aTokenIncentivesIndex reserveData.aTokenIncentivesIndex,
reserveData.aIncentivesLastUpdateTimestamp, reserveData.aIncentivesLastUpdateTimestamp
// ) = incentivesController.getAssetData(reserveData.aTokenAddress); TODO: temp fix // ) = incentivesController.getAssetData(reserveData.aTokenAddress); TODO: temp fix
) = incentivesController.assets(reserveData.aTokenAddress); ) = incentivesController.assets(reserveData.aTokenAddress);
( (
reserveData.sEmissionPerSecond, reserveData.sEmissionPerSecond,
reserveData.sTokenIncentivesIndex reserveData.sTokenIncentivesIndex,
reserveData.sIncentivesLastUpdateTimestamp, reserveData.sIncentivesLastUpdateTimestamp
// ) = incentivesController.getAssetData(reserveData.stableDebtTokenAddress); TODO: temp fix // ) = incentivesController.getAssetData(reserveData.stableDebtTokenAddress); TODO: temp fix
) = incentivesController.assets(reserveData.stableDebtTokenAddress); ) = incentivesController.assets(reserveData.stableDebtTokenAddress);
( (
reserveData.vEmissionPerSecond, reserveData.vEmissionPerSecond,
reserveData.vTokenIncentivesIndex reserveData.vTokenIncentivesIndex,
reserveData.vIncentivesLastUpdateTimestamp, reserveData.vIncentivesLastUpdateTimestamp
// ) = incentivesController.getAssetData(reserveData.variableDebtTokenAddress); TODO: temp fix // ) = incentivesController.getAssetData(reserveData.variableDebtTokenAddress); TODO: temp fix
) = incentivesController.assets(reserveData.variableDebtTokenAddress); ) = incentivesController.assets(reserveData.variableDebtTokenAddress);
} }