pub struct DeploymentInfo {
    pub bit: u8,
    pub start: EpochNumber,
    pub timeout: EpochNumber,
    pub min_activation_epoch: EpochNumber,
    pub period: EpochNumber,
    pub threshold: Ratio,
    pub since: EpochNumber,
    pub state: DeploymentState,
}
Expand description

An object containing various state info regarding deployments of consensus changes

Fields§

§bit: u8

determines which bit in the version field of the block is to be used to signal the softfork lock-in and activation. It is chosen from the set {0,1,2,…,28}.

§start: EpochNumber

specifies the first epoch in which the bit gains meaning.

§timeout: EpochNumber

specifies an epoch at which the miner signaling ends. Once this epoch has been reached, if the softfork has not yet locked_in (excluding this epoch block’s bit state), the deployment is considered failed on all descendants of the block.

§min_activation_epoch: EpochNumber

specifies the epoch at which the softfork is allowed to become active.

§period: EpochNumber

the length in epochs of the signalling period

§threshold: Ratio

the ratio of blocks with the version bit set required to activate the feature

§since: EpochNumber

The first epoch which the current state applies

§state: DeploymentState

With each epoch and softfork, we associate a deployment state. The possible states are:

  • DEFINED is the first state that each softfork starts. The blocks of 0 epoch is by definition in this state for each deployment.
  • STARTED for all blocks reach or past the start_epoch.
  • LOCKED_IN for one period after the first period with STARTED blocks of which at least threshold has the associated bit set in version.
  • ACTIVE for all blocks after the LOCKED_IN period.
  • FAILED for all blocks after the timeout_epoch, if LOCKED_IN was not reached.

Trait Implementations§

source§

impl Debug for DeploymentInfo

source§

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

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

impl<'de> Deserialize<'de> for DeploymentInfo

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 Serialize for DeploymentInfo

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

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,