Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
debjit-bw committed Oct 11, 2024
1 parent 09d21bc commit 444badb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/apply_test_vectors.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function apply_block_file() {

PAYLOAD_STATUS=$(echo $RESPONSE | jq --raw-output '.result.payloadStatus.status')
# If the status is not "VALID", exit the script with a non-zero code to make CI fail
if [ "$STATUS" != "VALID" ]; then
if [ "$PAYLOAD_STATUS" != "VALID" ]; then
echo "Error: Payload status is $STATUS, failing CI."
exit 1
fi
Expand Down

0 comments on commit 444badb

Please sign in to comment.