Skip to content

Commit

Permalink
chore: fix old struct
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherlymite committed Dec 5, 2024
1 parent c3aa252 commit 76ab7a2
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/deployments/contracts/procedures/AaveV3SetupProcedure.sol
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,17 @@ contract AaveV3SetupProcedure {
_validateMarketSetup(roles);

SetupReport memory report = _setupPoolAddressesProvider(
AddressProviderInput(
initialReport,
poolImplementation,
poolConfiguratorImplementation,
protocolDataProvider,
roles.poolAdmin,
aaveOracle,
config.incentivesProxy,
rewardsControllerImplementation,
priceOracleSentinel
)
AddressProviderInput({
initialReport: initialReport,
poolImplementation: poolImplementation,
poolConfiguratorImplementation: poolConfiguratorImplementation,
protocolDataProvider: protocolDataProvider,
poolAdmin: roles.poolAdmin,
aaveOracle: aaveOracle,
rewardsControllerProxy: config.incentivesProxy,
rewardsControllerImplementation: rewardsControllerImplementation,
priceOracleSentinel: priceOracleSentinel
})
);

report.aclManager = _setupACL(
Expand Down

0 comments on commit 76ab7a2

Please sign in to comment.