Fix warnings and clippy lints

This commit is contained in:
Paul Hauner
2019-03-03 11:47:09 +11:00
parent 87feeea1fd
commit ede5685bc2
7 changed files with 8 additions and 35 deletions

View File

@@ -5,7 +5,7 @@ use bls_aggregates::AggregatePublicKey as RawAggregatePublicKey;
///
/// This struct is a wrapper upon a base type and provides helper functions (e.g., SSZ
/// serialization).
#[derive(Debug, Clone)]
#[derive(Debug, Clone, Default)]
pub struct AggregatePublicKey(RawAggregatePublicKey);
impl AggregatePublicKey {