Trait fuel_tx::IntoChecked

source ·
pub trait IntoChecked: Checkable + Sized {
    type Metadata: Sized;

    fn into_checked_basic(
        self,
        block_height: Word,
        params: &ConsensusParameters
    ) -> Result<Checked<Self>, CheckError>; fn into_checked(
        self,
        block_height: Word,
        params: &ConsensusParameters
    ) -> Result<Checked<Self>, CheckError> { ... } }

Required Associated Types

Metadata produced during the check.

Required Methods

Returns transaction that passed only Checks::Basic.

Provided Methods

Returns transaction that passed all Checks.

Implementors