Parachains-runtime (#1505)

* Initial commit

* v0 to v1 primitives and remove attestations

* Review fixes

* implement candidate_events

* remove dead code
This commit is contained in:
Fedor Sakharov
2020-07-31 23:42:10 +03:00
committed by GitHub
parent 596ce826e8
commit 047e2fdb21
10 changed files with 1036 additions and 13 deletions
+10 -7
View File
@@ -20,13 +20,16 @@
//! particular the `Initializer` module, as it is responsible for initializing the state
//! of the other modules.
mod configuration;
mod inclusion;
mod inclusion_inherent;
mod initializer;
mod paras;
mod scheduler;
mod validity;
#![cfg_attr(not(feature = "std"), no_std)]
pub mod configuration;
pub mod inclusion;
pub mod inclusion_inherent;
pub mod initializer;
pub mod paras;
pub mod scheduler;
pub mod validity;
pub mod runtime_api_impl;