mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 04:58:01 +00:00
516ad523c1
Just reorganizing
15 lines
198 B
Bash
Executable File
15 lines
198 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
head () {
|
|
polkadot-js-api --ws ws://172.28.1.1:9944 query.parachains.heads 100 |\
|
|
jq -r .heads
|
|
}
|
|
|
|
start=$(head)
|
|
sleep 60
|
|
end=$(head)
|
|
|
|
[ "$start" != "$end" ]
|