From a592873710f31df369c01757f5f7a903a44bd160 Mon Sep 17 00:00:00 2001 From: autquis Date: Fri, 24 May 2024 17:02:56 +0200 Subject: [PATCH] test --- poly-commit/src/marlin/mod.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/poly-commit/src/marlin/mod.rs b/poly-commit/src/marlin/mod.rs index 714ad727..94dca7d1 100644 --- a/poly-commit/src/marlin/mod.rs +++ b/poly-commit/src/marlin/mod.rs @@ -7,11 +7,11 @@ use ark_crypto_primitives::sponge::CryptographicSponge; use ark_ec::{pairing::Pairing, AffineRepr, CurveGroup}; use ark_ff::{One, Zero}; use ark_std::{convert::TryInto, hash::Hash, ops::AddAssign, ops::Mul}; -#[cfg(not(feature = "std"))] -use ark_std::{ - string::{String, ToString}, - vec::Vec, -}; +// #[cfg(not(feature = "std"))] +// use ark_std::{ +// string::{String, ToString}, +// vec::Vec, +// }; /// Polynomial commitment scheme from [[KZG10]][kzg] that enforces /// strict degree bounds and (optionally) enables hiding commitments by