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 min_fee_rate: FeeRate,
    pub last_txs_updated_at: u64,
    pub tx_size_limit: u64,
    pub max_tx_pool_size: u64,
}
Expand description

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.

§min_fee_rate: FeeRate

Fee rate threshold. The pool rejects transactions which fee rate is below this threshold.

The unit is Shannons per 1000 bytes transaction serialization size in the block.

§last_txs_updated_at: u64

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

§tx_size_limit: u64

Limiting transactions to tx_size_limit

Transactions with a large size close to the block size limit may not be packaged, because the block header and cellbase are occupied, so the tx-pool is limited to accepting transaction up to tx_size_limit.

§max_tx_pool_size: u64

Total limit on the size of transactions in the tx-pool

Trait Implementations§

source§

impl Clone for TxPoolInfo

source§

fn clone(&self) -> TxPoolInfo

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TxPoolInfo

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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 Twhere V: MultiLane<T>,

§

fn vzip(self) -> V