[][src]Struct ckb_chain_spec::consensus::ProposalWindow

pub struct ProposalWindow(pub BlockNumber, pub BlockNumber);

Implementations

impl ProposalWindow[src]

Two protocol parameters w_close and w_far define the closest and farthest on-chain distance between a transaction's proposal and commitment.

A non-cellbase transaction is committed at height h_c if all of the following conditions are met:

  1. it is proposed at height h_p of the same chain, where w_close <= h_c − h_p <= w_far ;
  2. it is in the commitment zone of the main chain block with height h_c ;

ProposalWindow (2, 10) propose

13 14 [15 16 17 18 19 20 21 22 23] _______________________/
commit

pub fn closest(&self) -> BlockNumber[src]

pub fn farthest(&self) -> BlockNumber[src]

pub fn length(&self) -> BlockNumber[src]

Trait Implementations

impl Clone for ProposalWindow[src]

impl Copy for ProposalWindow[src]

impl Debug for ProposalWindow[src]

impl Eq for ProposalWindow[src]

impl PartialEq<ProposalWindow> for ProposalWindow[src]

impl StructuralEq for ProposalWindow[src]

impl StructuralPartialEq for ProposalWindow[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AsAny for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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