Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reject invalid DataColumnSidecar for zero blobs #3953

Merged
merged 12 commits into from
Oct 3, 2024
Prev Previous commit
Next Next commit
Add new verification to is_data_available
  • Loading branch information
jtraglia committed Oct 3, 2024
commit 3e80dc8ed02000ab9f3faee036d1fe565461d5eb
1 change: 1 addition & 0 deletions specs/_features/eip7594/fork-choice.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ def is_data_available(beacon_block_root: Root) -> bool:
# `MIN_EPOCHS_FOR_DATA_COLUMN_SIDECARS_REQUESTS` epochs.
column_sidecars = retrieve_column_sidecars(beacon_block_root)
return all(
verify_data_column_sidecar(column_sidecar) and
verify_data_column_sidecar_kzg_proofs(column_sidecar)
jtraglia marked this conversation as resolved.
Show resolved Hide resolved
for column_sidecar in column_sidecars
)
Expand Down