mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-11 06:23:47 +00:00
fix
This commit is contained in:
parent
e004e5f298
commit
5f0fc27fea
1 changed files with 2 additions and 2 deletions
|
|
@ -24,7 +24,7 @@ do
|
||||||
#exit 1
|
#exit 1
|
||||||
else
|
else
|
||||||
echo "State Sync occured!"
|
echo "State Sync occured!"
|
||||||
$count=$count+1
|
count=$((count+1))
|
||||||
fi
|
fi
|
||||||
|
|
||||||
checkpointID=$(curl -sL http://localhost:1317/checkpoints/latest | jq .result.id)
|
checkpointID=$(curl -sL http://localhost:1317/checkpoints/latest | jq .result.id)
|
||||||
|
|
@ -34,7 +34,7 @@ do
|
||||||
#exit 1
|
#exit 1
|
||||||
else
|
else
|
||||||
echo "Found checkpoint ID:" $checkpointID
|
echo "Found checkpoint ID:" $checkpointID
|
||||||
$count=$count+1
|
count=$((count+1))
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $count -eq 2 ]; then
|
if [ $count -eq 2 ]; then
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue