pub trait TransactionBuilderExt<Tx>where
    Tx: IntoChecked,
{ fn finalize_checked(
        &mut self,
        height: Word,
        params: &ConsensusParameters,
        gas_costs: &GasCosts
    ) -> Checked<Tx>; fn finalize_checked_basic(
        &mut self,
        height: Word,
        params: &ConsensusParameters
    ) -> Checked<Tx>; }
Expand description

Extension trait for fuel_tx::TransactionBuilder adding finalization methods

Required Methods§

Finalize the builder into a Checked<Tx> of the correct type

Finalize the builder into a Checked<Tx> of the correct type, with basic checks only

Implementations on Foreign Types§

Implementors§