mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 08:11:03 +00:00
19 lines
436 B
Bash
Executable File
19 lines
436 B
Bash
Executable File
#!/bin/bash
|
|
set -xeu
|
|
|
|
sleep 3
|
|
curl -v http://millau-node-bob:9933/health
|
|
curl -v http://rialto-node-bob:9933/health
|
|
|
|
MESSAGE_LANE=${MSG_EXCHANGE_GEN_LANE:-00000000}
|
|
|
|
/home/user/substrate-relay relay-messages MillauToRialto \
|
|
--lane $MESSAGE_LANE \
|
|
--source-host millau-node-bob \
|
|
--source-port 9944 \
|
|
--source-signer //Eve \
|
|
--target-host rialto-node-bob \
|
|
--target-port 9944 \
|
|
--target-signer //Eve \
|
|
--prometheus-host=0.0.0.0
|