fix: remove comments and indentation

This commit is contained in:
kartojal 2021-10-04 19:21:45 +02:00
commit 02016dcb0f

View File

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