pub trait TransactionBuilderExt<Tx>where
Tx: IntoChecked,{
// Required methods
fn finalize_checked(
&mut self,
height: BlockHeight,
gas_costs: &GasCosts
) -> Checked<Tx>;
fn finalize_checked_basic(&mut self, height: BlockHeight) -> Checked<Tx>;
}
Expand description
Extension trait for fuel_tx::TransactionBuilder
adding finalization methods
Required Methods§
sourcefn finalize_checked(
&mut self,
height: BlockHeight,
gas_costs: &GasCosts
) -> Checked<Tx>
fn finalize_checked( &mut self, height: BlockHeight, gas_costs: &GasCosts ) -> Checked<Tx>
Finalize the builder into a Checked<Tx>
of the correct type
sourcefn finalize_checked_basic(&mut self, height: BlockHeight) -> Checked<Tx>
fn finalize_checked_basic(&mut self, height: BlockHeight) -> Checked<Tx>
Finalize the builder into a Checked<Tx>
of the correct type, with basic checks
only