From a72ece83484c6650ae62788cacd243bbabb8ee40 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Fri, 19 Jan 2024 22:37:02 +0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: g11tech --- specs/_features/eip7594/das-core.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/_features/eip7594/das-core.md b/specs/_features/eip7594/das-core.md index dfe9833b4..109ffb3a0 100644 --- a/specs/_features/eip7594/das-core.md +++ b/specs/_features/eip7594/das-core.md @@ -43,7 +43,7 @@ We define the following Python custom types for type hinting and readability: | Name | SSZ equivalent | Description | | - | - | - | | `DataColumn` | `List[Cell, MAX_BLOBS_PER_BLOCK]` | The data of each column in EIP7594 | -| `ExtendedMatrix` | `List[Cell, MAX_BLOBS_PER_BLOCK * NUMBER_OF_COLUMNS]` | The full data with blobs and one-dimensional erasure coding extension | +| `ExtendedMatrix` | `List[Cell, MAX_BLOBS_PER_BLOCK * NUMBER_OF_COLUMNS]` | The full data of one-dimensional erasure coding extended blobs (in row major format) | | `FlatExtendedMatrix` | `List[BLSFieldElement, MAX_BLOBS_PER_BLOCK * FIELD_ELEMENTS_PER_BLOB * NUMBER_OF_COLUMNS]` | The flattened format of `ExtendedMatrix` | ## Configuration @@ -58,7 +58,7 @@ We define the following Python custom types for type hinting and readability: | Name | Value | Description | | - | - | - | -| `SAMPLES_PER_SLOT` | `8` | Number of random samples a node queries per slot | +| `SAMPLES_PER_SLOT` | `8` | Number of `DataColumn` random samples a node queries per slot | | `CUSTODY_REQUIREMENT` | `2` | Minimum number of columns an honest node custodies and serves samples from | | `TARGET_NUMBER_OF_PEERS` | `70` | Suggested minimum peer count |