Struct ckb_jsonrpc_types::TxPoolEntry [−][src]
pub struct TxPoolEntry {
pub cycles: Uint64,
pub size: Uint64,
pub fee: Capacity,
pub ancestors_size: Uint64,
pub ancestors_cycles: Uint64,
pub ancestors_count: Uint64,
pub timestamp: Uint64,
}Expand description
Transaction entry info
Fields
cycles: Uint64Consumed cycles.
size: Uint64The transaction serialized size in block.
fee: CapacityThe transaction fee.
ancestors_size: Uint64Size of in-tx-pool ancestor transactions
ancestors_cycles: Uint64Cycles of in-tx-pool ancestor transactions
ancestors_count: Uint64Number of in-tx-pool ancestor transactions
timestamp: Uint64The unix timestamp when entering the Txpool, unit: Millisecond
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for TxPoolEntry
impl Send for TxPoolEntry
impl Sync for TxPoolEntry
impl Unpin for TxPoolEntry
impl UnwindSafe for TxPoolEntry
Blanket Implementations
Mutably borrows from an owned value. Read more