Type Alias sp_runtime::ApplyExtrinsicResultWithInfo
source · pub type ApplyExtrinsicResultWithInfo<T> = Result<DispatchResultWithInfo<T>, TransactionValidityError>;
Expand description
Same as ApplyExtrinsicResult
but augmented with PostDispatchInfo
on success.
Aliased Type§
enum ApplyExtrinsicResultWithInfo<T> {
Ok(Result<T, DispatchErrorWithPostInfo<T>>),
Err(TransactionValidityError),
}
Variants§
Ok(Result<T, DispatchErrorWithPostInfo<T>>)
Contains the success value
Err(TransactionValidityError)
Contains the error value