Trait sc_service::TransactionPool[][src]

pub trait TransactionPool: Send + Sync {
    type Block: Block;
    type Hash: Hash + Eq + Member + Serialize;
    type InPoolTransaction: InPoolTransaction;
    type Error: From<Error> + IntoPoolError;
    fn submit_at(
        &self,
        at: &BlockId<Self::Block>,
        source: TransactionSource,
        xts: Vec<<Self::Block as Block>::Extrinsic, Global>
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Result<Self::Hash, Self::Error>, Global>, Self::Error>> + Send + 'static, Global>>;
fn submit_one(
        &self,
        at: &BlockId<Self::Block>,
        source: TransactionSource,
        xt: <Self::Block as Block>::Extrinsic
    ) -> Pin<Box<dyn Future<Output = Result<Self::Hash, Self::Error>> + Send + 'static, Global>>;
fn submit_and_watch(
        &self,
        at: &BlockId<Self::Block>,
        source: TransactionSource,
        xt: <Self::Block as Block>::Extrinsic
    ) -> Pin<Box<dyn Future<Output = Result<Box<dyn Stream<Item = TransactionStatus<Self::Hash, <Self::Block as Block>::Hash>> + Send + Unpin + 'static, Global>, Self::Error>> + Send + 'static, Global>>;
fn ready_at(
        &self,
        at: <<Self::Block as Block>::Header as Header>::Number
    ) -> Pin<Box<dyn Future<Output = Box<dyn Iterator<Item = Arc<Self::InPoolTransaction>> + Send + 'static, Global>> + Send + 'static, Global>>;
fn ready(
        &self
    ) -> Box<dyn Iterator<Item = Arc<Self::InPoolTransaction>> + Send + 'static, Global>;
fn remove_invalid(
        &self,
        hashes: &[Self::Hash]
    ) -> Vec<Arc<Self::InPoolTransaction>, Global>;
fn status(&self) -> PoolStatus;
fn import_notification_stream(&self) -> Receiver<Self::Hash>;
fn on_broadcasted(
        &self,
        propagations: HashMap<Self::Hash, Vec<String, Global>, RandomState>
    );
fn hash_of(&self, xt: &<Self::Block as Block>::Extrinsic) -> Self::Hash;
fn ready_transaction(
        &self,
        hash: &Self::Hash
    ) -> Option<Arc<Self::InPoolTransaction>>; }
Expand description

Transaction pool interface.

Associated Types

Block type.

Transaction hash type.

In-pool transaction type.

Error type.

Required methods

Returns a future that imports a bunch of unverified transactions to the pool.

Returns a future that imports one unverified transaction to the pool.

Returns a future that import a single transaction and starts to watch their progress in the pool.

Get an iterator for ready transactions ordered by priority.

Guarantees to return only when transaction pool got updated at at block. Guarantees to return immediately when None is passed.

Get an iterator for ready transactions ordered by priority.

Remove transactions identified by given hashes (and dependent transactions) from the pool.

Returns pool status.

Return an event stream of transactions imported to the pool.

Notify the pool about transactions broadcast.

Returns transaction hash

Return specific ready transaction by hash, if there is one.

Implementations on Foreign Types

Implementors