Type Alias hotshot_types::simple_certificate::ViewSyncCommitCertificate2
source · pub type ViewSyncCommitCertificate2<TYPES> = SimpleCertificate<TYPES, ViewSyncCommitData2<TYPES>, SuccessThreshold>;
Expand description
Type alias for a ViewSyncCommitCertificate2
, which is a SimpleCertificate
over ViewSyncCommitData2
Aliased Type§
struct ViewSyncCommitCertificate2<TYPES> {
pub data: ViewSyncCommitData2<TYPES>,
vote_commitment: Commitment<ViewSyncCommitData2<TYPES>>,
pub view_number: <TYPES as NodeType>::View,
pub signatures: Option<<<TYPES as NodeType>::SignatureKey as SignatureKey>::QcType>,
pub _pd: PhantomData<(TYPES, SuccessThreshold)>,
}
Fields§
§data: ViewSyncCommitData2<TYPES>
The data this certificate is for. I.e the thing that was voted on to create this Certificate
vote_commitment: Commitment<ViewSyncCommitData2<TYPES>>
commitment of all the votes this cert should be signed over
view_number: <TYPES as NodeType>::View
Which view this QC relates to
signatures: Option<<<TYPES as NodeType>::SignatureKey as SignatureKey>::QcType>
assembled signature for certificate aggregation
_pd: PhantomData<(TYPES, SuccessThreshold)>
phantom data for THRESHOLD
and TYPES
Implementations§
source§impl<TYPES: NodeType> ViewSyncCommitCertificate2<TYPES>
impl<TYPES: NodeType> ViewSyncCommitCertificate2<TYPES>
sourcepub fn to_vsc(self) -> ViewSyncCommitCertificate<TYPES>
pub fn to_vsc(self) -> ViewSyncCommitCertificate<TYPES>
Convert a DaCertificate
into a DaCertificate2