Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
gautam update
  • Loading branch information
joepetrowski committed Mar 29, 2019
commit 80b4de8af5eea0d3c4b6e69ea160844fa1181c8a
16 changes: 3 additions & 13 deletions srml/executive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
//!
//! ## Overview
//!
//! The executive module is coupled with the [system module](../srml_system/index.html) and lets the runtime
//! communicate with the SRML. It is unique from other modules in that it does not incorporate the `decl_event!`,
//! `decl_storage!`, or `decl_module!` macros.
//! The executive module is not a typical SRML module providing functionality around a specific feature.
//! It is cross-cutting framework component for the SRML. It works in conjunction with the
//! [SRML system module](../srml_system/index.html) to perform these cross-cutting functions.
//!
//! The executive module provides functions to:
//!
Expand Down Expand Up @@ -53,16 +53,6 @@
//! /// Executive: handles dispatch to the various modules.
//! pub type Executive = executive::Executive<Runtime, Block, Context, Balances, AllModules>;
//! ```
//!
//! ## Genesis Config
//!
//! The executive module is not dependent on the genesis config.
//!
//! ## Related Modules
//!
//! The executive module depends on the [`system`](../srml_system/index.html) and
//! [`srml_support`](../srml_support/index.html) modules as well as Substrate Core
//! libraries and the Rust standard library.

#![cfg_attr(not(feature = "std"), no_std)]

Expand Down