Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use wss to connect to the Rialto node in test deployments #1809

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deployments/bridges/rialto-millau/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:
- ./bridges/common:/common
- ./bridges/rialto-millau/entrypoints:/entrypoints
environment:
RUST_LOG: rpc=trace,bridge=trace
RUST_LOG: rpc=trace,bridge=trace,jsonrpsee=trace,jsonrpsee_core=trace,jsonrpsee_ws_client=trace,rustls=trace,soketto=trace
ports:
- "10016:9616"
depends_on: &all-nodes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ sleep 6
--millau-port 9944 \
--millau-signer //Rialto.HeadersAndMessagesRelay \
--millau-transactions-mortality=64 \
--rialto-host rialto-node-alice \
--rialto-port 9944 \
--rialto-host wss.rialto.brucke.link \
--rialto-port 443 \
--rialto-secure \
--rialto-signer //Millau.HeadersAndMessagesRelay \
--rialto-transactions-mortality=64 \
--lane=00000000 \
Expand Down
2 changes: 2 additions & 0 deletions deployments/networks/rialto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ services:
- --unsafe-rpc-external
- --unsafe-ws-external
- --prometheus-external
environment:
RUST_LOG: runtime=trace,rpc=debug,txpool=trace,runtime::bridge=trace,beefy=debug,jsonrpsee=trace,jsonrpsee_core=trace,jsonrpsee_server=trace,rustls=trace,soketto=trace
ports:
- "10133:9933"
- "10144:9944"
Expand Down