15 lines
197 B
Bash
Executable File
15 lines
197 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
head () {
|
|
pezkuwi-js-api --ws ws://172.28.1.1:9944 query.teyrchains.heads 100 |\
|
|
jq -r .heads
|
|
}
|
|
|
|
start=$(head)
|
|
sleep 60
|
|
end=$(head)
|
|
|
|
[ "$start" != "$end" ]
|