From 15b67ef6fc02f5f485767f101bc46bfeb44d101e Mon Sep 17 00:00:00 2001 From: willclarktech Date: Wed, 18 Nov 2020 18:34:03 +0100 Subject: [PATCH] scripts: Update wasmd init.sh script --- scripts/wasmd/init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wasmd/init.sh b/scripts/wasmd/init.sh index 7c49cb3e..71c404a4 100755 --- a/scripts/wasmd/init.sh +++ b/scripts/wasmd/init.sh @@ -3,7 +3,7 @@ set -o errexit -o nounset -o pipefail command -v shellcheck > /dev/null && shellcheck "$0" echo "Waiting for blockchain and REST server to be available ..." -timeout 60 bash -c "until curl -s http://localhost:1317/node_info > /dev/null; do sleep 0.5; done" +timeout 60 bash -c "until curl -s http://localhost:1319/node_info > /dev/null; do sleep 0.5; done" # The chain is unreliable in the first second of its existence (https://gist.github.com/webmaster128/8175692d4af5e6c572fddda7a9ef437c) sleep 1 echo "Okay, thank you for your patience."