Skip to content

Commit

Permalink
Fix solcover issue
Browse files Browse the repository at this point in the history
  • Loading branch information
shahthepro committed Oct 14, 2024
1 parent bf21c92 commit 2195f8e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 20 deletions.
24 changes: 6 additions & 18 deletions contracts/deploy/mainnet/108_vault_upgrade.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,12 @@ module.exports = deploymentWithGovernanceProposal(
// ----------------

// 1. Deploy new OETH Vault Core and Admin implementations
const dVaultCore = await deployWithConfirmation(
"OETHVaultCore",
[addresses.mainnet.WETH],
null,
false,
{}, // libraries
3800000, // gasLimit
false // useFeeData
);
const dVaultAdmin = await deployWithConfirmation(
"OETHVaultAdmin",
[addresses.mainnet.WETH],
null,
false,
{}, // libraries
3200000, // gasLimit
false // useFeeData
);
const dVaultCore = await deployWithConfirmation("OETHVaultCore", [
addresses.mainnet.WETH,
]);
const dVaultAdmin = await deployWithConfirmation("OETHVaultAdmin", [
addresses.mainnet.WETH,
]);

// 2. Connect to the OETH Vault as its governor via the proxy
const cVaultProxy = await ethers.getContract("OETHVaultProxy");
Expand Down
2 changes: 0 additions & 2 deletions contracts/hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ module.exports = {
settings: {
optimizer: {
enabled: true,
runs: 500
},
},
},
Expand Down Expand Up @@ -133,7 +132,6 @@ module.exports = {
},
localhost: {
timeout: 0,
allowUnlimitedContractSize: true,
...(isArbitrumFork
? { tags: ["arbitrumOne"] }
: isBaseFork
Expand Down

0 comments on commit 2195f8e

Please sign in to comment.