Fix clippy lints

This commit is contained in:
Paul Hauner
2019-01-04 18:30:24 +11:00
parent 62640ad691
commit 3876e29f6e
9 changed files with 25 additions and 18 deletions

View File

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