Type Definition sp_runtime::DispatchResult [−][src]
type DispatchResult = Result<(), DispatchError>;
This is the legacy return type of Dispatchable
. It is still exposed for compatibility reasons.
The new return type is DispatchResultWithInfo
. FRAME runtimes should use
frame_support::dispatch::DispatchResult
.