Skip to content

Commit

Permalink
feat(CI): Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
epociask committed May 31, 2024
1 parent 260f088 commit 706ca43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 2 additions & 3 deletions arbitrator/prover/src/kzgbn254.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@

use crate::utils::Bytes32;
use ark_ec::{AffineRepr, CurveGroup,pairing::Pairing};
use ark_ec::{AffineRepr, CurveGroup};
use kzgbn254::{
kzg::Kzg,
blob::Blob,
helpers::{remove_empty_byte_from_padded_bytes, to_fr_array}
};
use eyre::{ensure, Result};
use ark_bn254::{Bn254, G1Affine, G1Projective, G2Affine};
use ark_bn254::{G2Affine};
use num::BigUint;
use sha2::{Digest, Sha256};
use std::{convert::TryFrom, io::Write};
use ark_serialize::CanonicalSerialize;
use num::Zero;

lazy_static::lazy_static! {

Expand Down
2 changes: 0 additions & 2 deletions arbitrator/prover/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@

use crate::kzg::ETHEREUM_KZG_SETTINGS;
use arbutil::PreimageType;
use ark_ec::AffineRepr;
use ark_bn254::{Fr, G1Affine, G1Projective, G2Affine};
use c_kzg::{Blob, KzgCommitment};
use kzgbn254::{
kzg::Kzg as KzgBN254,
Expand Down

0 comments on commit 706ca43

Please sign in to comment.