mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-12 14:35:42 +00:00
a633e954f3
supersedes https://github.com/paritytech/parity-bridges-common/pull/2873 Draft because of couple of TODOs: - [x] fix remaining TODOs; - [x] double check that all changes from https://github.com/paritytech/parity-bridges-common/pull/2873 are correctly ported; - [x] create a separate PR (on top of that one or a follow up?) for https://github.com/paritytech/polkadot-sdk/tree/sv-try-new-bridge-fees; - [x] fix compilation issues (haven't checked, but there should be many). --------- Co-authored-by: Adrian Catangiu <adrian@parity.io>
32 lines
1.1 KiB
Bash
Executable File
32 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
source "${BASH_SOURCE%/*}/../../framework/utils/common.sh"
|
|
source "${BASH_SOURCE%/*}/../../framework/utils/zombienet.sh"
|
|
|
|
export ENV_PATH=`realpath ${BASH_SOURCE%/*}/../../environments/rococo-westend`
|
|
|
|
$ENV_PATH/spawn.sh --init --start-relayer &
|
|
env_pid=$!
|
|
|
|
ensure_process_file $env_pid $TEST_DIR/rococo.env 600
|
|
rococo_dir=`cat $TEST_DIR/rococo.env`
|
|
echo
|
|
|
|
ensure_process_file $env_pid $TEST_DIR/westend.env 300
|
|
westend_dir=`cat $TEST_DIR/westend.env`
|
|
echo
|
|
|
|
run_zndsl ${BASH_SOURCE%/*}/roc-relayer-balance-does-not-change.zndsl $rococo_dir
|
|
run_zndsl ${BASH_SOURCE%/*}/wnd-relayer-balance-does-not-change.zndsl $westend_dir
|
|
|
|
run_zndsl ${BASH_SOURCE%/*}/roc-reaches-westend.zndsl $westend_dir
|
|
run_zndsl ${BASH_SOURCE%/*}/wnd-reaches-rococo.zndsl $rococo_dir
|
|
|
|
run_zndsl ${BASH_SOURCE%/*}/wroc-reaches-rococo.zndsl $rococo_dir
|
|
run_zndsl ${BASH_SOURCE%/*}/wwnd-reaches-westend.zndsl $westend_dir
|
|
|
|
run_zndsl ${BASH_SOURCE%/*}/roc-relayer-balance-does-not-change.zndsl $rococo_dir
|
|
run_zndsl ${BASH_SOURCE%/*}/wnd-relayer-balance-does-not-change.zndsl $westend_dir
|