pub enum CommitmentLevel {
    Max,
    Recent,
    Root,
    Single,
    SingleGossip,
    Processed,
    Confirmed,
    Finalized,
}
Expand description

An attribute of a slot. It describes how finalized a block is at some point in time. For example, a slot is said to be at the max level immediately after the cluster recognizes the block at that slot as finalized. When querying the ledger state, use lower levels of commitment to report progress and higher levels to ensure state changes will not be rolled back.

Variants

Max

👎Deprecated since 1.5.5: Please use CommitmentLevel::Finalized instead

(DEPRECATED) The highest slot having reached max vote lockout, as recognized by a supermajority of the cluster.

Recent

👎Deprecated since 1.5.5: Please use CommitmentLevel::Processed instead

(DEPRECATED) The highest slot of the heaviest fork. Ledger state at this slot is not derived from a finalized block, but if multiple forks are present, is from the fork the validator believes is most likely to finalize.

Root

👎Deprecated since 1.5.5: Please use CommitmentLevel::Finalized instead

(DEPRECATED) The highest slot having reached max vote lockout.

Single

👎Deprecated since 1.5.5: Please use CommitmentLevel::Confirmed instead

(DEPRECATED) The highest slot having reached 1 confirmation by supermajority of the cluster.

SingleGossip

👎Deprecated since 1.5.5: Please use CommitmentLevel::Confirmed instead

(DEPRECATED) The highest slot that has been voted on by supermajority of the cluster This differs from single in that:

  1. It incorporates votes from gossip and replay.
  2. It does not count votes on descendants of a block, only direct votes on that block.
  3. This confirmation level also upholds “optimistic confirmation” guarantees in release 1.3 and onwards.

Processed

The highest slot of the heaviest fork processed by the node. Ledger state at this slot is not derived from a confirmed or finalized block, but if multiple forks are present, is from the fork the validator believes is most likely to finalize.

Confirmed

The highest slot that has been voted on by supermajority of the cluster, ie. is confirmed. Confirmation incorporates votes from gossip and replay. It does not count votes on descendants of a block, only direct votes on that block, and upholds “optimistic confirmation” guarantees in release 1.3 and onwards.

Finalized

The highest slot having reached max vote lockout, as recognized by a supermajority of the cluster.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
Formats the value using the given formatter. Read more
The associated error which can be returned from parsing.
Parses a string s to return a value of this type. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.