Type Alias hotshot_types::simple_certificate::TimeoutCertificate2
source · pub type TimeoutCertificate2<TYPES> = SimpleCertificate<TYPES, TimeoutData2<TYPES>, SuccessThreshold>;
Expand description
Type alias for a TimeoutCertificate2
, which is a SimpleCertificate
over TimeoutData2
Aliased Type§
struct TimeoutCertificate2<TYPES> {
pub data: TimeoutData2<TYPES>,
vote_commitment: Commitment<TimeoutData2<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: TimeoutData2<TYPES>
The data this certificate is for. I.e the thing that was voted on to create this Certificate
vote_commitment: Commitment<TimeoutData2<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> TimeoutCertificate2<TYPES>
impl<TYPES: NodeType> TimeoutCertificate2<TYPES>
sourcepub fn to_tc(self) -> TimeoutCertificate<TYPES>
pub fn to_tc(self) -> TimeoutCertificate<TYPES>
Convert a DaCertificate
into a DaCertificate2
source§impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES>, THRESHOLD: Threshold<TYPES>> SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES>, THRESHOLD: Threshold<TYPES>> SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
sourcepub fn new(
data: VOTEABLE,
vote_commitment: Commitment<VOTEABLE>,
view_number: TYPES::View,
signatures: Option<<TYPES::SignatureKey as SignatureKey>::QcType>,
pd: PhantomData<(TYPES, THRESHOLD)>,
) -> Self
pub fn new( data: VOTEABLE, vote_commitment: Commitment<VOTEABLE>, view_number: TYPES::View, signatures: Option<<TYPES::SignatureKey as SignatureKey>::QcType>, pd: PhantomData<(TYPES, THRESHOLD)>, ) -> Self
Creates a new instance of SimpleCertificate
Trait Implementations
source§impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + 'static + QuorumMarker, THRESHOLD: Threshold<TYPES>> Certificate<TYPES, VOTEABLE> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + 'static + QuorumMarker, THRESHOLD: Threshold<TYPES>> Certificate<TYPES, VOTEABLE> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§fn total_nodes<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
epoch: Option<TYPES::Epoch>,
) -> usize
fn total_nodes<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: Option<TYPES::Epoch>, ) -> usize
Proxy’s to Membership.total_nodes
source§fn create_signed_certificate<V: Versions>(
vote_commitment: Commitment<VersionedVoteData<TYPES, VOTEABLE, V>>,
data: Self::Voteable,
sig: <TYPES::SignatureKey as SignatureKey>::QcType,
view: TYPES::View,
) -> Self
fn create_signed_certificate<V: Versions>( vote_commitment: Commitment<VersionedVoteData<TYPES, VOTEABLE, V>>, data: Self::Voteable, sig: <TYPES::SignatureKey as SignatureKey>::QcType, view: TYPES::View, ) -> Self
Build a certificate from the data commitment and the quorum of signers
source§async fn is_valid_cert<V: Versions>(
&self,
stake_table: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>,
threshold: NonZeroU64,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> Result<()>
async fn is_valid_cert<V: Versions>( &self, stake_table: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>, threshold: NonZeroU64, upgrade_lock: &UpgradeLock<TYPES, V>, ) -> Result<()>
Checks if the cert is valid in the given epoch
source§fn threshold<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
epoch: Option<TYPES::Epoch>,
) -> u64
fn threshold<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: Option<TYPES::Epoch>, ) -> u64
Returns the amount of stake needed to create this certificate
source§fn stake_table_entry<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
pub_key: &TYPES::SignatureKey,
epoch: Option<TYPES::Epoch>,
) -> Option<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
fn stake_table_entry<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, pub_key: &TYPES::SignatureKey, epoch: Option<TYPES::Epoch>, ) -> Option<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
Get
StakeTableEntry
from Membership implementation.source§fn stake_table<MEMBERSHIP: Membership<TYPES>>(
membership: &MEMBERSHIP,
epoch: Option<TYPES::Epoch>,
) -> Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
fn stake_table<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: Option<TYPES::Epoch>, ) -> Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry>
Get Stake Table from Membership implementation.
source§async fn data_commitment<V: Versions>(
&self,
upgrade_lock: &UpgradeLock<TYPES, V>,
) -> Result<Commitment<VersionedVoteData<TYPES, VOTEABLE, V>>>
async fn data_commitment<V: Versions>( &self, upgrade_lock: &UpgradeLock<TYPES, V>, ) -> Result<Commitment<VersionedVoteData<TYPES, VOTEABLE, V>>>
Get the vote commitment which the votes commit to
source§impl<TYPES: Clone + NodeType, VOTEABLE: Clone + Voteable<TYPES>, THRESHOLD: Clone + Threshold<TYPES>> Clone for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: Clone + NodeType, VOTEABLE: Clone + Voteable<TYPES>, THRESHOLD: Clone + Threshold<TYPES>> Clone for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§fn clone(&self) -> SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
fn clone(&self) -> SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + Committable, THRESHOLD: Threshold<TYPES>> Committable for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + Committable, THRESHOLD: Threshold<TYPES>> Committable for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§impl<TYPES: Debug + NodeType, VOTEABLE: Debug + Voteable<TYPES>, THRESHOLD: Debug + Threshold<TYPES>> Debug for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: Debug + NodeType, VOTEABLE: Debug + Voteable<TYPES>, THRESHOLD: Debug + Threshold<TYPES>> Debug for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§impl<'de, TYPES: NodeType, VOTEABLE, THRESHOLD: Threshold<TYPES>> Deserialize<'de> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<'de, TYPES: NodeType, VOTEABLE, THRESHOLD: Threshold<TYPES>> Deserialize<'de> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + HasEpoch<TYPES> + 'static, THRESHOLD: Threshold<TYPES>> HasEpoch<TYPES> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + HasEpoch<TYPES> + 'static, THRESHOLD: Threshold<TYPES>> HasEpoch<TYPES> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + 'static, THRESHOLD: Threshold<TYPES>> HasViewNumber<TYPES> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + 'static, THRESHOLD: Threshold<TYPES>> HasViewNumber<TYPES> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§fn view_number(&self) -> TYPES::View
fn view_number(&self) -> TYPES::View
Returns the view number the type refers to.
source§impl<TYPES: Hash + NodeType, VOTEABLE: Hash + Voteable<TYPES>, THRESHOLD: Hash + Threshold<TYPES>> Hash for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: Hash + NodeType, VOTEABLE: Hash + Voteable<TYPES>, THRESHOLD: Hash + Threshold<TYPES>> Hash for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§impl<TYPES: PartialEq + NodeType, VOTEABLE: PartialEq + Voteable<TYPES>, THRESHOLD: PartialEq + Threshold<TYPES>> PartialEq for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
impl<TYPES: PartialEq + NodeType, VOTEABLE: PartialEq + Voteable<TYPES>, THRESHOLD: PartialEq + Threshold<TYPES>> PartialEq for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
source§fn eq(&self, other: &SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>) -> bool
fn eq(&self, other: &SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.