From a1e46d1ae47dd9d097725801575b46907c12a1f8 Mon Sep 17 00:00:00 2001 From: Roberto Bayardo Date: Thu, 24 Nov 2022 05:26:02 -0800 Subject: [PATCH] EIP4844: Fix return value of compute_challenges (#3129) Co-authored-by: George Kadianakis --- specs/eip4844/polynomial-commitments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/eip4844/polynomial-commitments.md b/specs/eip4844/polynomial-commitments.md index 6f5a369e4..74c0b3cc5 100644 --- a/specs/eip4844/polynomial-commitments.md +++ b/specs/eip4844/polynomial-commitments.md @@ -166,7 +166,7 @@ def blob_to_polynomial(blob: Blob) -> Polynomial: ```python def compute_challenges(polynomials: Sequence[Polynomial], - commitments: Sequence[KZGCommitment]) -> BLSFieldElement: + commitments: Sequence[KZGCommitment]) -> Tuple[Sequence[BLSFieldElement], BLSFieldElement]: """ Return the Fiat-Shamir challenges required by the rest of the protocol. The Fiat-Shamir logic works as per the following pseudocode: