Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integration_tests/scripts/check_latest_blob.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ echo "Failed to get latest block" >&2
exit 1
fi

latest_dec=$((latest_dec - 64)) # adjust to finalized
latest_dec=$((latest_dec - 64 - 32)) # adjust to finalized, and add some buffer (1 epoch) for blob downloading to disk
from_dec=$((latest_dec - lookback))
from_hex="$(cast to-hex "$from_dec")"
to_hex="$(cast to-hex "$latest_dec")"
Expand Down
Loading