aboutsummaryrefslogtreecommitdiff
path: root/api/tests/node_local_chain.sh
diff options
context:
space:
mode:
Diffstat (limited to 'api/tests/node_local_chain.sh')
-rwxr-xr-xapi/tests/node_local_chain.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/tests/node_local_chain.sh b/api/tests/node_local_chain.sh
index d1b87b4..fb5672f 100755
--- a/api/tests/node_local_chain.sh
+++ b/api/tests/node_local_chain.sh
@@ -3,7 +3,7 @@ PROGRAM="$(basename $0)"
printf '[%s]\n' "$PROGRAM"
printf "TEST /zchain\n"
printf "\t01:\tComparing API with CLI response..."
-API_RESPONSE="$(curl http://127.0.0.1:8610/v0/zchain 2>/dev/null | jq -c -M | sha512sum - | awk '{print $1 }')"
+API_RESPONSE="$(curl -s http://127.0.0.1:8610/v0/zchain 2>/dev/null | jq -c -M | sha512sum - | awk '{print $1 }')"
CMD_RESPONSE="$(ak zchain --crawl | jq -c -M | sha512sum - | awk '{ print $1 }')"
if [ "$API_RESPONSE" == "$CMD_RESPONSE" ]
then