From c07af5cd5b750530023317765ea413cf96c0afc3 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 84b1546c1..a616e9695 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", };