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

Commit

Permalink
rm indirection
Browse files Browse the repository at this point in the history
  • Loading branch information
hazim-j committed Apr 3, 2024
1 parent 557f504 commit 7a9ce7f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/test/v06/account.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ const VIEM_WALLET_CLIENT_NO_HOIST = createWalletClient({
chain: localhost,
transport: http(ETH_RPC),
});
const ETHERS_SIGNING_KEY = new ethers.SigningKey(EOA_PK);
const ETHERS_WALLET = new ethers.BaseWallet(ETHERS_SIGNING_KEY);
const ETHERS_WALLET = new ethers.BaseWallet(new ethers.SigningKey(EOA_PK));

export const ACCOUNTS = [
{
Expand Down

0 comments on commit 7a9ce7f

Please sign in to comment.