referrerpolicy=no-referrer-when-downgrade

Type Alias TransactionValidityWithRefund

Source
pub type TransactionValidityWithRefund = Result<(ValidTransaction, Weight), TransactionValidityError>;
Expand description

Information on a transaction’s validity and, if valid, on how it relates to other transactions and some refund for the operation.

Aliased Type§

enum TransactionValidityWithRefund {
    Ok((ValidTransaction, Weight)),
    Err(TransactionValidityError),
}

Variants§

§1.0.0

Ok((ValidTransaction, Weight))

Contains the success value

§1.0.0

Err(TransactionValidityError)

Contains the error value