Skip to content

Commit 0aed7c2

Browse files
committed
fix: cleanup
1 parent bf4cf6f commit 0aed7c2

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed

foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ test = 'tests'
44
script = 'scripts'
55
optimizer = true
66
optimizer_runs = 200
7-
solc = '0.8.21'
7+
solc = '0.8.22'
88
evm_version = 'shanghai'
99
bytecode_hash = 'none'
1010
ignored_warnings_from = ["src/periphery/contracts/treasury/RevenueSplitter.sol"]

src/deployments/contracts/procedures/AaveV3TreasuryProcedure.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ contract AaveV3TreasuryProcedure {
1313

1414
function _deployAaveV3Treasury(
1515
address poolAdmin,
16-
address deployedProxyAdmin,
1716
bytes32 collectorSalt
1817
) internal returns (TreasuryReport memory) {
1918
TreasuryReport memory treasuryReport;

src/deployments/projects/aave-v3-batched/batches/AaveV3PeripheryBatch.sol

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,7 @@ contract AaveV3PeripheryBatch is
3232
_report.aaveOracle = _deployAaveOracle(config.oracleDecimals, poolAddressesProvider);
3333

3434
if (config.treasury == address(0)) {
35-
TreasuryReport memory treasuryReport = _deployAaveV3Treasury(
36-
poolAdmin,
37-
_report.proxyAdmin,
38-
config.salt
39-
);
35+
TreasuryReport memory treasuryReport = _deployAaveV3Treasury(poolAdmin, config.salt);
4036

4137
_report.treasury = treasuryReport.treasury;
4238
_report.treasuryImplementation = treasuryReport.treasuryImplementation;

0 commit comments

Comments
 (0)