Fix signature of compute_aggregated_poly_and_commitment

This commit is contained in:
Dankrad Feist
2022-09-19 20:10:48 +01:00
parent 9a2fcc05a2
commit b63ed22588

View File

@@ -117,7 +117,7 @@ def compute_powers(x: BLSFieldElement, n: uint64) -> Sequence[BLSFieldElement]:
```python
def compute_aggregated_poly_and_commitment(
blobs: Sequence[BLSFieldElement],
blobs: Sequence[Sequence[BLSFieldElement]],
kzg_commitments: Sequence[KZGCommitment]) -> Tuple[Polynomial, KZGCommitment]:
"""
Return the aggregated polynomial and aggregated KZG commitment.