Skip to content

Commit

Permalink
fix: Update deploy version
Browse files Browse the repository at this point in the history
  • Loading branch information
LHerskind committed Jan 24, 2022
1 parent fe0c7cf commit a99e5b4
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 26 deletions.
44 changes: 22 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"prepublish": "npm run compile"
},
"devDependencies": {
"@aave/deploy-v3": "^1.14.1",
"@aave/periphery-v3": "^1.9.1",
"@aave/deploy-v3": "^1.14.2-beta.2",
"@aave/periphery-v3": "^1.10.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.11",
"@openzeppelin/contracts": "4.2.0",
"@tenderly/hardhat-tenderly": "^1.1.0-beta.5",
Expand Down
8 changes: 6 additions & 2 deletions test-suites/pool-edge.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ makeSuite('Pool: Edge cases', (testEnv: TestEnv) => {
ZERO_ADDRESS_NOT_VALID,
} = ProtocolErrors;

const MAX_STABLE_RATE_BORROW_SIZE_PERCENT = '2500';
const MAX_NUMBER_RESERVES = '128';
const MAX_STABLE_RATE_BORROW_SIZE_PERCENT = 2500;
const MAX_NUMBER_RESERVES = 128;

const POOL_ID = utils.formatBytes32String('POOL');

Expand Down Expand Up @@ -71,6 +71,7 @@ makeSuite('Pool: Edge cases', (testEnv: TestEnv) => {
EModeLogic: (await hre.deployments.get('EModeLogic')).address,
BridgeLogic: (await hre.deployments.get('BridgeLogic')).address,
FlashLoanLogic: (await hre.deployments.get('FlashLoanLogic')).address,
PoolLogic: (await hre.deployments.get('PoolLogic')).address,
},
log: false,
});
Expand Down Expand Up @@ -149,6 +150,7 @@ makeSuite('Pool: Edge cases', (testEnv: TestEnv) => {
EModeLogic: (await hre.deployments.get('EModeLogic')).address,
BridgeLogic: (await hre.deployments.get('BridgeLogic')).address,
FlashLoanLogic: (await hre.deployments.get('FlashLoanLogic')).address,
PoolLogic: (await hre.deployments.get('PoolLogic')).address,
},
log: false,
});
Expand Down Expand Up @@ -432,6 +434,7 @@ makeSuite('Pool: Edge cases', (testEnv: TestEnv) => {
EModeLogic: (await hre.deployments.get('EModeLogic')).address,
BridgeLogic: (await hre.deployments.get('BridgeLogic')).address,
FlashLoanLogic: (await hre.deployments.get('FlashLoanLogic')).address,
PoolLogic: (await hre.deployments.get('PoolLogic')).address,
},
log: false,
});
Expand Down Expand Up @@ -611,6 +614,7 @@ makeSuite('Pool: Edge cases', (testEnv: TestEnv) => {
EModeLogic: (await hre.deployments.get('EModeLogic')).address,
BridgeLogic: (await hre.deployments.get('BridgeLogic')).address,
FlashLoanLogic: (await hre.deployments.get('FlashLoanLogic')).address,
PoolLogic: (await hre.deployments.get('PoolLogic')).address,
},
log: false,
});
Expand Down

0 comments on commit a99e5b4

Please sign in to comment.