diff --git a/kairos-cli/bin/crypto/public_key.rs b/kairos-cli/bin/crypto/public_key.rs index c4bb478a..42824d0f 100644 --- a/kairos-cli/bin/crypto/public_key.rs +++ b/kairos-cli/bin/crypto/public_key.rs @@ -1,6 +1,5 @@ use crate::crypto::error::CryptoError; -use casper_types::bytesrepr::FromBytes; -use casper_types::bytesrepr::ToBytes; +use casper_types::bytesrepr::{FromBytes, ToBytes}; #[derive(Clone)] pub struct CasperPublicKey(pub casper_types::PublicKey); diff --git a/kairos-cli/bin/crypto/signer.rs b/kairos-cli/bin/crypto/signer.rs index bf237f72..1d42d058 100644 --- a/kairos-cli/bin/crypto/signer.rs +++ b/kairos-cli/bin/crypto/signer.rs @@ -3,8 +3,8 @@ use std::path::PathBuf; use super::private_key::CasperPrivateKey; use super::public_key::CasperPublicKey; use crate::crypto::error::CryptoError; -use casper_types::{bytesrepr::ToBytes, SecretKey}; -use casper_types::{crypto, PublicKey}; +use casper_types::bytesrepr::ToBytes; +use casper_types::{crypto, PublicKey, SecretKey}; pub struct CasperSigner { secret_key: CasperPrivateKey,