[−][src]Trait sc_network::config::TransactionPool
Transaction pool interface
Required methods
fn transactions(&self) -> Vec<(H, B::Extrinsic)>
Get transactions from the pool that are ready to be propagated.
fn hash_of(&self, transaction: &B::Extrinsic) -> H
Get hash of transaction.
fn import(&self, transaction: B::Extrinsic) -> TransactionImportFuture
Import a transaction into the pool.
This will return future.
fn on_broadcasted(&self, propagations: HashMap<H, Vec<String>>)
Notify the pool about transactions broadcast.
fn transaction(&self, hash: &H) -> Option<B::Extrinsic>
Get transaction by hash.