Skip to content

Commit

Permalink
claimManager factory update
Browse files Browse the repository at this point in the history
  • Loading branch information
Passerino committed Nov 16, 2021
1 parent bcaf024 commit c3ba0c8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion e2e/utils/setup_contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ const deployIdentityManager = async (): Promise<void> => {
};

const deployClaimManager = async (): Promise<void> => {
claimManager = await new ClaimManager__factory(deployer).deploy(didRegistry.address, ensRegistry.address);
claimManager = await (await new ClaimManager__factory(deployer).deploy()).deployed();
claimManager.initialize(didRegistry.address, ensRegistry.address);
};

export const root = "ewc";
Expand Down

0 comments on commit c3ba0c8

Please sign in to comment.