Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
debjit-bw committed Oct 13, 2024
1 parent 44838b6 commit c91580c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/apply_test_vectors.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,10 @@ function apply_block_file() {
echo engine_forkchoiceUpdatedV1 set new block as head RESPONSE $RESPONSE

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

0 comments on commit c91580c

Please sign in to comment.