From 122e50062fe3d1762f88062d10ced05190a41370 Mon Sep 17 00:00:00 2001 From: Justin Traglia <95511699+jtraglia@users.noreply.github.com> Date: Wed, 7 Aug 2024 09:53:51 -0500 Subject: [PATCH] s/fields/field elements Co-authored-by: George Kadianakis --- src/eip7594/eip7594.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eip7594/eip7594.c b/src/eip7594/eip7594.c index 0f8d5c66..0d2eb490 100644 --- a/src/eip7594/eip7594.c +++ b/src/eip7594/eip7594.c @@ -91,7 +91,7 @@ C_KZG_RET compute_cells_and_kzg_proofs( ret = poly_lagrange_to_monomial(poly_monomial, poly_lagrange, FIELD_ELEMENTS_PER_BLOB, s); if (ret != C_KZG_OK) goto out; - /* Ensure the upper half of the fields are zero */ + /* Ensure the upper half of the field elements are zero */ for (size_t i = FIELD_ELEMENTS_PER_BLOB; i < FIELD_ELEMENTS_PER_EXT_BLOB; i++) { poly_monomial[i] = FR_ZERO; }