[][src]Struct ckb_tx_pool::pool::TxPoolInfo

pub struct TxPoolInfo {
    pub tip_hash: Byte32,
    pub tip_number: BlockNumber,
    pub pending_size: usize,
    pub proposed_size: usize,
    pub orphan_size: usize,
    pub total_tx_size: usize,
    pub total_tx_cycles: Cycle,
    pub last_txs_updated_at: u64,
}

Transaction pool information.

Fields

tip_hash: Byte32

The associated chain tip block hash.

Transaction pool is stateful. It manages the transactions which are valid to be commit after this block.

tip_number: BlockNumber

The block number of the block tip_hash.

pending_size: usize

Count of transactions in the pending state.

The pending transactions must be proposed in a new block first.

proposed_size: usize

Count of transactions in the proposed state.

The proposed transactions are ready to be commit in the new block after the block tip_hash.

orphan_size: usize

Count of orphan transactions.

An orphan transaction has an input cell from the transaction which is neither in the chain nor in the transaction pool.

total_tx_size: usize

Total count of transactions in the pool of all the different kinds of states.

total_tx_cycles: Cycle

Total consumed VM cycles of all the transactions in the pool.

last_txs_updated_at: u64

Last updated time. This is the Unix timestamp in milliseconds.

Trait Implementations

impl Clone for TxPoolInfo[src]

impl Debug for TxPoolInfo[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> AsAny for T where
    T: Any

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

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

impl<T> Erased for T

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

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