cardano-docker/scripts/functions/wait_for_pool_registration
2021-02-13 10:19:38 -05:00

12 lines
352 B
Plaintext

function wait_for_pool_registration {
source /scripts/functions/check_pool_registration
echo "Waiting for the blockchain to register the pool."
while true; do
if [ -n "$(check_pool_registration)" ]; then
break
fi
echo "Blockchain has not yet registered the pool. Waiting.."
sleep 10
done
}