File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
test/evm/hardhat/fixtures Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ export const hubPoolFixture = hre.deployments.createFixture(async ({ ethers }) =
88 return await deployHubPool ( ethers ) ;
99} ) ;
1010
11+ // Silence warnings from openzeppelin/hardhat-upgrades for this fixture.
12+ hre . upgrades . silenceWarnings ( ) ;
13+
1114export async function deployHubPool ( ethers : any , spokePoolName = "MockSpokePool" ) {
1215 const [ signer , crossChainAdmin ] = await ethers . getSigners ( ) ;
1316
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ export const spokePoolFixture = hre.deployments.createFixture(async ({ ethers })
1616 return await deploySpokePool ( ethers ) ;
1717} ) ;
1818
19+ // Silence warnings from openzeppelin/hardhat-upgrades for this fixture.
20+ hre . upgrades . silenceWarnings ( ) ;
21+
1922// Have a separate function that deploys the contract and returns the contract addresses. This is called by the fixture
2023// to have standard fixture features. It is also exported as a function to enable non-snapshoted deployments.
2124export async function deploySpokePool (
You can’t perform that action at this time.
0 commit comments