From f114e5390b2009387abdc48b5a8947cf622abea4 Mon Sep 17 00:00:00 2001 From: Dmitry Lavrenov Date: Wed, 20 Mar 2024 13:03:06 +0300 Subject: [PATCH] Fix rpc url http port in ts tests --- utils/e2e-tests/ts/lib/node.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/e2e-tests/ts/lib/node.ts b/utils/e2e-tests/ts/lib/node.ts index 4b14bdc15..c8fc453c0 100644 --- a/utils/e2e-tests/ts/lib/node.ts +++ b/utils/e2e-tests/ts/lib/node.ts @@ -89,6 +89,6 @@ export const runNode = ( }; const meta: NodeMeta = { - rpcUrlHttp: "http://127.0.0.1:9933", + rpcUrlHttp: "http://127.0.0.1:9944", rpcUrlWs: "ws://127.0.0.1:9944", };