Skip to content

Commit 0cb4118

Browse files
committed
Fix unused import warning
1 parent 3f56401 commit 0cb4118

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

kimchi/src/tests/generic.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ use mina_poseidon::{
99
constants::PlonkSpongeConstantsKimchi,
1010
sponge::{DefaultFqSponge, DefaultFrSponge},
1111
};
12-
use poly_commitment::SRS;
1312
use std::array;
1413

1514
type SpongeParams = PlonkSpongeConstantsKimchi;
@@ -93,6 +92,8 @@ fn test_generic_gate_pub_empty() {
9392
#[cfg(feature = "bn254")]
9493
#[test]
9594
fn test_generic_gate_kzg() {
95+
use poly_commitment::SRS;
96+
9697
type Fp = ark_bn254::Fr;
9798
type SpongeParams = PlonkSpongeConstantsKimchi;
9899
type BaseSponge = DefaultFqSponge<ark_bn254::g1::Config, SpongeParams>;

0 commit comments

Comments
 (0)