Struct ethers_core::types::TxpoolContent [−][src]
pub struct TxpoolContent {
pub pending: BTreeMap<Address, BTreeMap<String, TxpoolTransaction>>,
pub queued: BTreeMap<Address, BTreeMap<String, TxpoolTransaction>>,
}
Expand description
Transaction Pool Content
The content inspection property can be queried to list the exact details 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.
See here for more details
Fields
pending: BTreeMap<Address, BTreeMap<String, TxpoolTransaction>>
pending tx
queued: BTreeMap<Address, BTreeMap<String, TxpoolTransaction>>
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 TxpoolContent
impl Send for TxpoolContent
impl Sync for TxpoolContent
impl Unpin for TxpoolContent
impl UnwindSafe for TxpoolContent
Blanket Implementations
Mutably borrows from an owned value. Read more