Remove Default impls for BLS newtypes

This commit is contained in:
Paul Hauner
2018-12-26 08:46:37 +11:00
parent 7f00f167e3
commit 810156a0fb
2 changed files with 0 additions and 18 deletions

View File

@@ -29,13 +29,6 @@ impl AggregateSignature {
}
}
impl Default for AggregateSignature {
/// A "default" signature is a signature across an empty message by a secret key of 48 zeros.
fn default() -> Self {
AggregateSignature::new()
}
}
impl Encodable for AggregateSignature {
fn ssz_append(&self, s: &mut SszStream) {
s.append_vec(&self.0.as_bytes());