From 51b0f82577cd71b06d32305c7578bbcd8cdcb971 Mon Sep 17 00:00:00 2001 From: MicaiahReid Date: Wed, 19 Oct 2022 16:48:17 -0400 Subject: [PATCH] fix address usage in test --- src/chains/ethereum/block/tests/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chains/ethereum/block/tests/index.test.ts b/src/chains/ethereum/block/tests/index.test.ts index 761954ba09..922bf3e360 100644 --- a/src/chains/ethereum/block/tests/index.test.ts +++ b/src/chains/ethereum/block/tests/index.test.ts @@ -32,7 +32,7 @@ describe("@ganache/ethereum-block", async () => { }); const wallet = new Wallet(options.wallet); const [from, to] = wallet.addresses; - const fromAddress = new Address(from); + const fromAddress = Address.from(from); const tx: Transaction = { type: "0x2", from: from,