From 4b22ef247625f938b4aa496877502b5aa417f602 Mon Sep 17 00:00:00 2001 From: Srinath Setty Date: Wed, 1 Sep 2021 10:18:39 -0700 Subject: [PATCH] small cleanup --- src/r1cs.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/r1cs.rs b/src/r1cs.rs index bd95484..8320172 100644 --- a/src/r1cs.rs +++ b/src/r1cs.rs @@ -1,7 +1,5 @@ #![allow(clippy::type_complexity)] -use crate::commitments::CompressedCommitment; - -use super::commitments::{CommitGens, CommitTrait, Commitment}; +use super::commitments::{CommitGens, CommitTrait, Commitment, CompressedCommitment}; use super::errors::NovaError; use super::traits::{Group, PrimeField}; use itertools::concat;