Struct ethers_core::types::TxpoolInspect [−][src]
pub struct TxpoolInspect {
pub pending: BTreeMap<Address, BTreeMap<String, TxpoolInspectSummary>>,
pub queued: BTreeMap<Address, BTreeMap<String, TxpoolInspectSummary>>,
}
Expand description
Transaction Pool Inspect
The inspect inspection property can be queried to list a textual summary of all the transactions currently pending for inclusion in the next block(s), as well as the ones that are being scheduled for future execution only. This is a method specifically tailored to developers to quickly see the transactions in the pool and find any potential issues.
See here for more details
Fields
pending: BTreeMap<Address, BTreeMap<String, TxpoolInspectSummary>>
pending tx
queued: BTreeMap<Address, BTreeMap<String, TxpoolInspectSummary>>
queued tx
Trait Implementations
Returns the “default value” for a type. Read more
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
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 TxpoolInspect
impl Send for TxpoolInspect
impl Sync for TxpoolInspect
impl Unpin for TxpoolInspect
impl UnwindSafe for TxpoolInspect
Blanket Implementations
Mutably borrows from an owned value. Read more