From a8ad5e0e175095ef80bab307aa9b4a7755ca97bf Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Tue, 26 Oct 2021 07:16:19 +0000 Subject: [PATCH] ci: allow both rpc and ws on parachain nodes --- --- a/launch-config.json +++ b/launch-config.json @@ -66,7 +66,9 @@ "name": "alice", "flags": [ "--rpc-cors=all", - "--rpc-port=9933", "--unsafe-ws-external" + "--rpc-port=9933", + "--unsafe-rpc-external", + "--unsafe-ws-external" ] }, { @@ -76,7 +78,9 @@ "name": "bob", "flags": [ "--rpc-cors=all", - "--rpc-port=9934", "--unsafe-rpc-external" + "--rpc-port=9934", + "--unsafe-rpc-external", + "--unsafe-ws-external" ] } ] -- gitstuff