Skip to content

Commit

Permalink
chore: fixed typo initializing relayer
Browse files Browse the repository at this point in the history
  • Loading branch information
jatZama committed Oct 18, 2024
1 parent fc57471 commit 78c5fe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/asyncDecrypt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const parsedEnv = dotenv.parse(fs.readFileSync('gateway/.env.gateway'));
let relayer: Wallet;
if (networkName === 'hardhat') {
const privKeyRelayer = process.env.PRIVATE_KEY_GATEWAY_RELAYER;
const relayer = new ethers.Wallet(privKeyRelayer!, ethers.provider);
relayer = new ethers.Wallet(privKeyRelayer!, ethers.provider);
}

const argEvents =
Expand Down

0 comments on commit 78c5fe9

Please sign in to comment.