From 326ef053f57ed40280ad017e5147f24406344a6b Mon Sep 17 00:00:00 2001 From: JGiter Date: Fri, 9 Jun 2023 14:25:33 +0300 Subject: [PATCH] fix: replace test rpc url localhost with ip --- e2e/utils/setup-contracts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/utils/setup-contracts.ts b/e2e/utils/setup-contracts.ts index 1b7dad83..3f3cc06c 100644 --- a/e2e/utils/setup-contracts.ts +++ b/e2e/utils/setup-contracts.ts @@ -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;