Skip to content

Commit

Permalink
Fix redundant imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
timothee-haudebourg committed Jun 27, 2024
1 parent d760bd6 commit 41d3c9a
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions crates/bbs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,7 @@ impl MultiSigningMethod<BBSplusSecretKey, Bbs> for Multikey {
algorithm: Bbs,
messages: &[Vec<u8>],
) -> Result<Vec<u8>, MessageSignatureError> {
use zkryptium::{
bbsplus::ciphersuites::Bls12381Sha256,
schemes::{
algorithms::BBSplus,
generics::{BlindSignature, Signature},
},
};
use zkryptium::schemes::generics::{BlindSignature, Signature};

let DecodedMultikey::Bls12_381(pk) = self.decode()? else {
return Err(MessageSignatureError::InvalidPublicKey);
Expand Down

0 comments on commit 41d3c9a

Please sign in to comment.