Trait sp_runtime::offchain::TransactionPool
source · pub trait TransactionPool {
// Required method
fn submit_transaction(
&mut self,
extrinsic: Vec<u8, Global>
) -> Result<(), ()>;
}
Expand description
Abstraction over transaction pool.
This trait is currently used within the ExternalitiesExtension
to provide offchain calls with access to the transaction pool without
tight coupling with any pool implementation.