From 111123723af8693611519846016fa841ccaf7096 Mon Sep 17 00:00:00 2001 From: fradamt Date: Wed, 7 Aug 2024 15:07:37 +0200 Subject: [PATCH] fix function comment --- specs/_features/eip7594/fork-choice.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/_features/eip7594/fork-choice.md b/specs/_features/eip7594/fork-choice.md index 82d52b20c..1c2fe89c1 100644 --- a/specs/_features/eip7594/fork-choice.md +++ b/specs/_features/eip7594/fork-choice.md @@ -27,7 +27,7 @@ This is the modification of the fork choice accompanying EIP-7594. def is_data_available(beacon_block_root: Root) -> bool: # `retrieve_column_sidecars` is implementation and context dependent, replacing # `retrieve_blobs_and_proofs`. For the given block root, it returns all column - # sidecars to custody, or raises an exception if they are not available. + # sidecars to sample, or raises an exception if they are not available. # The p2p network does not guarantee sidecar retrieval outside of # `MIN_EPOCHS_FOR_DATA_COLUMN_SIDECARS_REQUESTS` epochs. column_sidecars = retrieve_column_sidecars(beacon_block_root)