clippy and fmt

This commit is contained in:
Logan Collins 2018-10-31 01:27:28 -05:00
parent ad5f725b2e
commit dcbc065388
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
use crypto::PublicKey;
use threshold_decryption::EncryptionSchedule;
use serde_derive::{Deserialize, Serialize};
use threshold_decryption::EncryptionSchedule;
#[derive(Clone, Copy, Eq, PartialEq, Serialize, Deserialize, Hash, Debug)]
pub enum NodeChange<N> {

View File

@ -2,7 +2,6 @@ use std::collections::btree_map::Entry;
use std::collections::BTreeMap;
use std::sync::Arc;
use bincode;
use derivative::Derivative;
use rand::{Rand, Rng};
use serde::{de::DeserializeOwned, Serialize};