From 90536515a33700cf7dfae813efeb7f7b29bbea73 Mon Sep 17 00:00:00 2001 From: Hossein Moghaddas Date: Mon, 8 Jan 2024 18:09:50 +0100 Subject: [PATCH] Bring the whitespace back --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4a520058..833b2892 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ This trait defines the interface for a polynomial commitment scheme. It is recom ```rust // In this example, we will commit to a single polynomial, open it first at one point, and then batched at two points, and finally verify the proofs. // We will use the KZG10 polynomial commitment scheme, following the approach from Marlin. + use ark_poly_commit::{Polynomial, marlin_pc::MarlinKZG10, LabeledPolynomial, PolynomialCommitment, QuerySet, Evaluations}; use ark_bls12_377::Bls12_377; use ark_crypto_primitives::sponge::poseidon::{PoseidonSponge, PoseidonConfig};