pub trait NodeInfo: Send + Sync {
    fn pending_transactions(&self) -> Vec<PendingTransaction>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; }
Expand description

Something which can provide information about the local node.

Required methods

Get all pending transactions of local origin.

Implementors