From 7a5e64b72edb52c9d162a02b8b585c239e7d3862 Mon Sep 17 00:00:00 2001 From: Corban Riley Date: Mon, 10 Jun 2024 11:06:38 -0400 Subject: [PATCH] SequenceWallet deploy should just return ContractTransactionResponse --- test/utils/wallet.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/utils/wallet.ts b/test/utils/wallet.ts index 5f39b68..110da55 100644 --- a/test/utils/wallet.ts +++ b/test/utils/wallet.ts @@ -211,8 +211,7 @@ export class SequenceWallet { return } - await this.options.context.factory.deploy(await this.options.context.mainModule.getAddress(), this.imageHash) - return this.options.context.factory.waitForDeployment() + return await this.options.context.factory.deploy(await this.options.context.mainModule.getAddress(), this.imageHash) } async getNonce(space: ethers.BigNumberish = 0) {