Type Alias gclient::ext::sp_runtime::ApplyExtrinsicResultWithInfo
pub type ApplyExtrinsicResultWithInfo<T> = Result<Result<T, DispatchErrorWithPostInfo<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