Skip to content

Commit

Permalink
fix: unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
maan2003 committed Mar 4, 2024
1 parent 65ec6a9 commit bfc752b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
4 changes: 2 additions & 2 deletions rmc/src/handler.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Reliable MultiCast - a primitive for Reliable Broadcast protocol.
pub use aleph_bft_crypto::{
Indexed, MultiKeychain, Multisigned, NodeCount, PartialMultisignature, PartiallyMultisigned,
Signable, Signature, Signed, UncheckedSigned,
Indexed, MultiKeychain, Multisigned, PartialMultisignature, PartiallyMultisigned, Signable,
Signed, UncheckedSigned,
};
use core::fmt::Debug;
use std::{
Expand Down
4 changes: 0 additions & 4 deletions rmc/src/scheduler.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
pub use aleph_bft_crypto::{
Indexed, MultiKeychain, Multisigned, NodeCount, PartialMultisignature, PartiallyMultisigned,
Signable, Signature, Signed, UncheckedSigned,
};
use async_trait::async_trait;
use core::fmt::Debug;
use futures::future::pending;
Expand Down
5 changes: 1 addition & 4 deletions rmc/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ use crate::{
scheduler::TaskScheduler,
Message,
};
pub use aleph_bft_crypto::{
Indexed, MultiKeychain, Multisigned, NodeCount, PartialMultisignature, PartiallyMultisigned,
Signable, Signature, Signed, UncheckedSigned,
};
pub use aleph_bft_crypto::{MultiKeychain, Multisigned, Signable};
use core::fmt::Debug;
use log::{debug, warn};
use std::hash::Hash;
Expand Down

0 comments on commit bfc752b

Please sign in to comment.