We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aed7c2 commit 5815bb1Copy full SHA for 5815bb1
src/deployments/projects/aave-v3-batched/AaveV3BatchOrchestration.sol
@@ -88,6 +88,8 @@ library AaveV3BatchOrchestration {
88
89
AaveV3TokensBatch.TokensReport memory tokensReport = _deployTokens(setupReport.poolProxy);
90
91
+ // to avoid issues when running without --via-ir we copy the variable
92
+ address pa = roles.poolAdmin;
93
ConfigEngineReport memory configEngineReport = _deployHelpersBatch1(
94
setupReport,
95
miscReport,
@@ -98,7 +100,7 @@ library AaveV3BatchOrchestration {
98
100
StaticATokenReport memory staticATokenReport = _deployHelpersBatch2(
99
101
setupReport.poolProxy,
102
setupReport.rewardsControllerProxy,
- roles.poolAdmin
103
+ pa
104
);
105
106
// Save final report at AaveV3SetupBatch contract
0 commit comments