Struct ckb_jsonrpc_types::ProposalWindow[][src]

pub struct ProposalWindow {
    pub closest: BlockNumber,
    pub farthest: BlockNumber,
}

Two protocol parameters closest and farthest 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 { closest: 2, farthest: 10 }
      propose
         \
          \
          13 14 [15 16 17 18 19 20 21 22 23]
                 \_______________________/
                              \
                            commit

Fields

closest: BlockNumber

The closest distance between the proposal and the commitment.

farthest: BlockNumber

The farthest distance between the proposal and the commitment.

Trait Implementations

impl Clone for ProposalWindow[src]

impl Debug for ProposalWindow[src]

impl<'de> Deserialize<'de> for ProposalWindow[src]

impl Eq for ProposalWindow[src]

impl PartialEq<ProposalWindow> for ProposalWindow[src]

impl Serialize 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> Borrow<T> for T where
    T: ?Sized
[src]

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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>,