Struct fuel_core_producer::block_producer::Producer
source · pub struct Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider> {
pub config: Config,
pub view_provider: ViewProvider,
pub txpool: TxPool,
pub executor: Arc<Executor>,
pub relayer: Box<dyn Relayer>,
pub lock: Mutex<()>,
pub gas_price_provider: GasPriceProvider,
pub consensus_parameters_provider: ConsensusProvider,
}
Fields§
§config: Config
§view_provider: ViewProvider
§txpool: TxPool
§executor: Arc<Executor>
§relayer: Box<dyn Relayer>
§lock: Mutex<()>
§gas_price_provider: GasPriceProvider
§consensus_parameters_provider: ConsensusProvider
Implementations§
source§impl<ViewProvider, TxPool, Executor, TxSource, GasPriceProvider, ConsensusProvider> Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider>where
ViewProvider: AtomicView<Height = BlockHeight> + 'static,
ViewProvider::View: BlockProducerDatabase,
TxPool: TxPool<TxSource = TxSource> + 'static,
Executor: BlockProducer<TxSource> + 'static,
GasPriceProvider: GasPriceProviderConstraint,
ConsensusProvider: ConsensusParametersProvider,
impl<ViewProvider, TxPool, Executor, TxSource, GasPriceProvider, ConsensusProvider> Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider>where
ViewProvider: AtomicView<Height = BlockHeight> + 'static,
ViewProvider::View: BlockProducerDatabase,
TxPool: TxPool<TxSource = TxSource> + 'static,
Executor: BlockProducer<TxSource> + 'static,
GasPriceProvider: GasPriceProviderConstraint,
ConsensusProvider: ConsensusParametersProvider,
sourcepub async fn produce_and_execute_block_txpool(
&self,
height: BlockHeight,
block_time: Tai64,
) -> Result<UncommittedResult<Changes>>
pub async fn produce_and_execute_block_txpool( &self, height: BlockHeight, block_time: Tai64, ) -> Result<UncommittedResult<Changes>>
Produces and execute block for the specified height with transactions from the TxPool
.
source§impl<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider> Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider>where
ViewProvider: AtomicView<Height = BlockHeight> + 'static,
ViewProvider::View: BlockProducerDatabase,
Executor: BlockProducer<Vec<Transaction>> + 'static,
GasPriceProvider: GasPriceProviderConstraint,
ConsensusProvider: ConsensusParametersProvider,
impl<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider> Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider>where
ViewProvider: AtomicView<Height = BlockHeight> + 'static,
ViewProvider::View: BlockProducerDatabase,
Executor: BlockProducer<Vec<Transaction>> + 'static,
GasPriceProvider: GasPriceProviderConstraint,
ConsensusProvider: ConsensusParametersProvider,
sourcepub async fn produce_and_execute_block_transactions(
&self,
height: BlockHeight,
block_time: Tai64,
transactions: Vec<Transaction>,
) -> Result<UncommittedResult<Changes>>
pub async fn produce_and_execute_block_transactions( &self, height: BlockHeight, block_time: Tai64, transactions: Vec<Transaction>, ) -> Result<UncommittedResult<Changes>>
Produces and execute block for the specified height with transactions
.
source§impl<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider> Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider>where
ViewProvider: AtomicView<Height = BlockHeight> + 'static,
ViewProvider::View: BlockProducerDatabase,
Executor: DryRunner + 'static,
GasPriceProvider: GasPriceProviderConstraint,
ConsensusProvider: ConsensusParametersProvider,
impl<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider> Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider>where
ViewProvider: AtomicView<Height = BlockHeight> + 'static,
ViewProvider::View: BlockProducerDatabase,
Executor: DryRunner + 'static,
GasPriceProvider: GasPriceProviderConstraint,
ConsensusProvider: ConsensusParametersProvider,
sourcepub async fn dry_run(
&self,
transactions: Vec<Transaction>,
height: Option<BlockHeight>,
utxo_validation: Option<bool>,
gas_price: Option<u64>,
) -> Result<Vec<TransactionExecutionStatus>>
pub async fn dry_run( &self, transactions: Vec<Transaction>, height: Option<BlockHeight>, utxo_validation: Option<bool>, gas_price: Option<u64>, ) -> Result<Vec<TransactionExecutionStatus>>
Simulates multiple transactions without altering any state. Does not acquire the production lock. since it is basically a “read only” operation and shouldn’t get in the way of normal production.
Auto Trait Implementations§
impl<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider> !Freeze for Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider>
impl<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider> !RefUnwindSafe for Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider>
impl<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider> Send for Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider>
impl<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider> Sync for Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider>
impl<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider> Unpin for Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider>
impl<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider> !UnwindSafe for Producer<ViewProvider, TxPool, Executor, GasPriceProvider, ConsensusProvider>
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<S> IteratorOverTable for S
impl<S> IteratorOverTable for S
source§fn iter_all<M>(
&self,
direction: Option<IterDirection>,
) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>where
M: Mappable,
Self: IterableTable<M>,
fn iter_all<M>(
&self,
direction: Option<IterDirection>,
) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>where
M: Mappable,
Self: IterableTable<M>,
Returns an iterator over the all entries in the table.
source§fn iter_all_by_prefix<M, P>(
&self,
prefix: Option<P>,
) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>
fn iter_all_by_prefix<M, P>( &self, prefix: Option<P>, ) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>
Returns an iterator over the all entries in the table with the specified prefix.
source§fn iter_all_by_start<M>(
&self,
start: Option<&<M as Mappable>::Key>,
direction: Option<IterDirection>,
) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>where
M: Mappable,
Self: IterableTable<M>,
fn iter_all_by_start<M>(
&self,
start: Option<&<M as Mappable>::Key>,
direction: Option<IterDirection>,
) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>where
M: Mappable,
Self: IterableTable<M>,
Returns an iterator over the all entries in the table after a specific start key.
source§fn iter_all_filtered<M, P>(
&self,
prefix: Option<P>,
start: Option<&<M as Mappable>::Key>,
direction: Option<IterDirection>,
) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>
fn iter_all_filtered<M, P>( &self, prefix: Option<P>, start: Option<&<M as Mappable>::Key>, direction: Option<IterDirection>, ) -> BoxedIter<'_, Result<(<M as Mappable>::OwnedKey, <M as Mappable>::OwnedValue), Error>>
Returns an iterator over the all entries in the table with a prefix after a specific start key.