Skip to content

Commit

Permalink
fix: remove IAaveIncentivesController casting
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Valeri committed Dec 17, 2021
1 parent 6d29cd3 commit 9805add
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/protocol/libraries/logic/ConfiguratorLogic.sol
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ library ConfiguratorLogic {
IInitializableAToken.initialize.selector,
input.treasury,
input.underlyingAsset,
IAaveIncentivesController(input.incentivesController),
input.incentivesController,
input.underlyingAssetDecimals,
input.aTokenName,
input.aTokenSymbol,
Expand All @@ -76,7 +76,7 @@ library ConfiguratorLogic {
abi.encodeWithSelector(
IInitializableDebtToken.initialize.selector,
input.underlyingAsset,
IAaveIncentivesController(input.incentivesController),
input.incentivesController,
input.underlyingAssetDecimals,
input.stableDebtTokenName,
input.stableDebtTokenSymbol,
Expand All @@ -89,7 +89,7 @@ library ConfiguratorLogic {
abi.encodeWithSelector(
IInitializableDebtToken.initialize.selector,
input.underlyingAsset,
IAaveIncentivesController(input.incentivesController),
input.incentivesController,
input.underlyingAssetDecimals,
input.variableDebtTokenName,
input.variableDebtTokenSymbol,
Expand Down

0 comments on commit 9805add

Please sign in to comment.