Skip to content

Commit

Permalink
fix: replace test rpc url localhost with ip
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiter committed Jun 9, 2023
1 parent 3ffbcab commit 326ef05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/utils/setup-contracts.ts
Expand Up @@ -27,7 +27,7 @@ const { parseEther, namehash } = utils;
const { abi: didContractAbi, bytecode: didContractBytecode } = ethrReg;

const GANACHE_PORT = 8544;
export const rpcUrl = `http://localhost:${GANACHE_PORT}`;
export const rpcUrl = `http://127.0.0.1:${GANACHE_PORT}`;

const provider = new JsonRpcProvider(rpcUrl);
let didRegistry: Contract;
Expand Down

0 comments on commit 326ef05

Please sign in to comment.