From 1669723adfa56c327927f61c8cb3a9b942b67907 Mon Sep 17 00:00:00 2001 From: kevaundray Date: Thu, 18 Apr 2024 20:26:46 +0100 Subject: [PATCH] Update specs/_features/eip7594/polynomial-commitments-sampling.md Co-authored-by: Justin Traglia <95511699+jtraglia@users.noreply.github.com> --- specs/_features/eip7594/polynomial-commitments-sampling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/_features/eip7594/polynomial-commitments-sampling.md b/specs/_features/eip7594/polynomial-commitments-sampling.md index 1937ac979..8702b72a5 100644 --- a/specs/_features/eip7594/polynomial-commitments-sampling.md +++ b/specs/_features/eip7594/polynomial-commitments-sampling.md @@ -317,7 +317,7 @@ def compute_kzg_proof_multi_impl( - Z(X) is the degree `k` polynomial that evaluates to zero on all `k` points """ - # For all points, compute the evaluation of those points. + # For all points, compute the evaluation of those points ys = [evaluate_polynomialcoeff(polynomial_coeff, z) for z in zs] # Compute r(X) interpolation_polynomial = interpolate_polynomialcoeff(zs, ys)