We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1a0e6e commit 69be4abCopy full SHA for 69be4ab
utils/FactoryDeployer.ts
@@ -39,12 +39,10 @@ export class FactoryDeployer {
39
call?: string,
40
): Promise<string> {
41
await this.initFactory();
42
-
43
if (this.factoryType === 'createx') {
44
- return this.deployWithCreateX(contractFactory, constructorArgs, call);
45
- } else {
46
- return this.deployWithGenericFactory(contractFactory, constructorArgs, call);
+ return await this.deployWithCreateX(contractFactory, constructorArgs, call);
47
}
+ return await this.deployWithGenericFactory(contractFactory, constructorArgs, call);
48
49
50
/**
0 commit comments