Skip to content

Commit

Permalink
Merge pull request #579 from zama-ai/typoRelayer
Browse files Browse the repository at this point in the history
chore: fixed typo initializing relayer
  • Loading branch information
jatZama authored Oct 18, 2024
2 parents fc57471 + 78c5fe9 commit c955706
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 c955706

Please sign in to comment.