Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
fix address usage in test
Browse files Browse the repository at this point in the history
  • Loading branch information
MicaiahReid committed Oct 19, 2022
1 parent f480bdc commit 51b0f82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chains/ethereum/block/tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 51b0f82

Please sign in to comment.