Type Alias frame_support::dispatch::DispatchErrorWithPostInfo
source · pub type DispatchErrorWithPostInfo = DispatchErrorWithPostInfo<PostDispatchInfo>;
Expand description
The error type contained in a DispatchResultWithPostInfo
.
Aliased Type§
struct DispatchErrorWithPostInfo {
pub post_info: PostDispatchInfo,
pub error: DispatchError,
}
Fields§
§post_info: PostDispatchInfo
Additional information about the Dispatchable
which is only known post dispatch.
error: DispatchError
The actual DispatchResult
indicating whether the dispatch was successful.