Correct type definition for PolynomialCoeff

This commit is contained in:
Dankrad Feist 2024-01-11 21:05:51 +00:00
parent b55ab46909
commit c2522ac467
No known key found for this signature in database
GPG Key ID: 6815E6A20BEBBABA
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ Public functions MUST accept raw bytes as input and perform the required cryptog
| Name | SSZ equivalent | Description |
| - | - | - |
| `PolynomialCoeff` | `Vector[BLSFieldElement, FIELD_ELEMENTS_PER_BLOB]` | A polynomial in coefficient form |
| `PolynomialCoeff` | `List[BLSFieldElement, 2 * FIELD_ELEMENTS_PER_BLOB]` | A polynomial in coefficient form |
| `Cell` | `Vector[BLSFieldElement, FIELD_ELEMENTS_PER_CELL]` | The unit of blob data that can come with their own KZG proofs |
| `CellID` | `uint64` | Cell identifier |