Skeleton of the Router module (#1726)

The purpose of this commit is to establish a foundation of the router module, it paves the way for the implementation of other features.
This commit is contained in:
Sergei Shulepov
2020-09-17 12:27:40 +02:00
committed by GitHub
parent 49cba2e3a3
commit 9bb374fb90
6 changed files with 112 additions and 8 deletions
+1 -1
View File
@@ -20,7 +20,6 @@
//! particular the `Initializer` module, as it is responsible for initializing the state
//! of the other modules.
#![cfg_attr(not(feature = "std"), no_std)]
use sp_std::result;
@@ -33,6 +32,7 @@ pub mod inclusion;
pub mod inclusion_inherent;
pub mod initializer;
pub mod paras;
pub mod router;
pub mod scheduler;
pub mod validity;