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>

source

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>

source

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>

source§

fn total_nodes<MEMBERSHIP: Membership<TYPES>>( membership: &MEMBERSHIP, epoch: Option<TYPES::Epoch>, ) -> usize

Proxy’s to Membership.total_nodes

source§

type Voteable = VOTEABLE

The data commitment this certificate certifies.
source§

type Threshold = THRESHOLD

Threshold Functions
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

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<()>

Checks if the cert is valid in the given epoch
source§

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>

Get StakeTableEntry from Membership implementation.
source§

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§

fn data(&self) -> &Self::Voteable

Get the commitment which was voted on
source§

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>
where TYPES::View: Clone, TYPES::SignatureKey: Clone,

source§

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)

Performs copy-assignment from source. Read more
source§

impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + Committable, THRESHOLD: Threshold<TYPES>> Committable for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>

source§

fn commit(&self) -> Commitment<Self>

Create a binding commitment to self.
§

fn tag() -> String

Tag that should be used when serializing commitments to this type. Read more
source§

impl<TYPES: Debug + NodeType, VOTEABLE: Debug + Voteable<TYPES>, THRESHOLD: Debug + Threshold<TYPES>> Debug for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
where TYPES::View: Debug, TYPES::SignatureKey: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, TYPES: NodeType, VOTEABLE, THRESHOLD: Threshold<TYPES>> Deserialize<'de> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
where VOTEABLE: Deserialize<'de> + Voteable<TYPES>, TYPES::View: Deserialize<'de>,

source§

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>

source§

fn epoch(&self) -> Option<TYPES::Epoch>

Returns Epoch
source§

impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES> + 'static, THRESHOLD: Threshold<TYPES>> HasViewNumber<TYPES> for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>

source§

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>
where TYPES::View: Hash, TYPES::SignatureKey: Hash,

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<TYPES: PartialEq + NodeType, VOTEABLE: PartialEq + Voteable<TYPES>, THRESHOLD: PartialEq + Threshold<TYPES>> PartialEq for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
where TYPES::View: PartialEq, TYPES::SignatureKey: PartialEq,

source§

fn eq(&self, other: &SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<TYPES: NodeType, VOTEABLE, THRESHOLD: Threshold<TYPES>> Serialize for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
where VOTEABLE: Serialize + Voteable<TYPES>, TYPES::View: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<TYPES: Eq + NodeType, VOTEABLE: Eq + Voteable<TYPES>, THRESHOLD: Eq + Threshold<TYPES>> Eq for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>
where TYPES::View: Eq, TYPES::SignatureKey: Eq,

source§

impl<TYPES: NodeType, VOTEABLE: Voteable<TYPES>, THRESHOLD: Threshold<TYPES>> StructuralPartialEq for SimpleCertificate<TYPES, VOTEABLE, THRESHOLD>