Skip to content
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
1 change: 1 addition & 0 deletions deployments/bridges/rialto-millau/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ services:
- ./bridges/rialto-millau/entrypoints:/entrypoints
environment:
RUST_LOG: rpc=trace,bridge=trace
GLOBAL_DEPLOYMENTS: $GLOBAL_DEPLOYMENTS
ports:
- "10016:9616"
depends_on: &all-nodes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@ sleep 15
# Give chain a little bit of time to process initialization transaction
sleep 6

RIALTO_NODE_CONNECTION_PARAMS=$([ -z ${GLOBAL_DEPLOYMENTS} ] && \
echo "--rialto-host rialto-node-alice --rialto-port 9944" \
|| \
echo "--rialto-host wss.rialto.brucke.link --rialto-port 443 --rialto-secure" )

/home/user/substrate-relay relay-headers-and-messages millau-rialto \
--millau-host millau-node-alice \
--millau-port 9944 \
--millau-signer //Rialto.HeadersAndMessagesRelay \
--millau-transactions-mortality=64 \
--rialto-host wss.rialto.brucke.link \
--rialto-port 443 \
--rialto-secure \
$RIALTO_NODE_CONNECTION_PARAMS \
--rialto-signer //Millau.HeadersAndMessagesRelay \
--rialto-transactions-mortality=64 \
--lane=00000000 \
Expand Down