types: aggregate signatures in attestations

This commit is contained in:
Michael Sproul 2019-03-25 12:45:24 +11:00
parent 0bf8cb953e
commit bde7ab79c8
No known key found for this signature in database
GPG Key ID: 77B1309D2E54E914

View File

@ -46,7 +46,8 @@ impl Attestation {
self.aggregation_bitfield
.union_inplace(&other.aggregation_bitfield);
self.custody_bitfield.union_inplace(&other.custody_bitfield);
// FIXME: signature aggregation once our BLS library wraps it
self.aggregate_signature
.add_aggregate(&other.aggregate_signature);
}
}