pub struct TxpoolInspectInfo {
pub pending: BTreeMap<Address, BTreeMap<String, String>>,
pub queued: BTreeMap<Address, BTreeMap<String, String>>,
}
Expand description
Transaction Pool Inspect Info
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, String>>
pending tx
queued: BTreeMap<Address, BTreeMap<String, String>>
queued tx
Trait Implementations§
Source§impl Clone for TxpoolInspectInfo
impl Clone for TxpoolInspectInfo
Source§fn clone(&self) -> TxpoolInspectInfo
fn clone(&self) -> TxpoolInspectInfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TxpoolInspectInfo
impl Debug for TxpoolInspectInfo
Source§impl Default for TxpoolInspectInfo
impl Default for TxpoolInspectInfo
Source§fn default() -> TxpoolInspectInfo
fn default() -> TxpoolInspectInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TxpoolInspectInfo
impl<'de> Deserialize<'de> for TxpoolInspectInfo
Source§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
Source§impl PartialEq for TxpoolInspectInfo
impl PartialEq for TxpoolInspectInfo
Source§impl Serialize for TxpoolInspectInfo
impl Serialize for TxpoolInspectInfo
impl StructuralPartialEq for TxpoolInspectInfo
Auto Trait Implementations§
impl Freeze for TxpoolInspectInfo
impl RefUnwindSafe for TxpoolInspectInfo
impl Send for TxpoolInspectInfo
impl Sync for TxpoolInspectInfo
impl Unpin for TxpoolInspectInfo
impl UnwindSafe for TxpoolInspectInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more