Skip to content

Commit 9078653

Browse files
committed
fixed rebase error
1 parent 67529a1 commit 9078653

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

helpers/contracts.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const getCompiledContractFactory = (ethers, contract) => {
5555
);
5656
};
5757

58-
const deployContract = async (ethers, contractName, signer, args, txParams) => {
58+
const deployContract = async (ethers, contractName, signer, args, txParams, waitBlocks=0) => {
5959
// console.log('Deploying', contractName);
6060
const Factory = await getCompiledContractFactory(ethers, contractName);
6161
const contract = await Factory.connect(signer).deploy(...args, txParams);
@@ -77,6 +77,7 @@ const deployProxyContract = async (
7777
args,
7878
initializerDef,
7979
txParams,
80+
waitBlocks=0
8081
) => {
8182
// console.log('Deploying proxy', contractName);
8283
const ProxyAdminFactory = await getCompiledContractFactory(

0 commit comments

Comments
 (0)