Make everything compile and fix tests

This commit is contained in:
Bastian Köcher
2020-01-14 22:22:21 +01:00
parent 1418b842aa
commit 828447d49c
26 changed files with 5214 additions and 3536 deletions
+4 -5
View File
@@ -16,15 +16,14 @@
#![cfg_attr(not(feature = "std"), no_std)]
use codec::{Decode, Encode};
use sp_runtime::traits::Block as BlockT;
///! The Cumulus runtime to make a runtime a parachain.
use rstd::vec::Vec;
use codec::{Encode, Decode};
use runtime_primitives::traits::Block as BlockT;
use sp_std::vec::Vec;
#[cfg(not(feature = "std"))]
#[doc(hidden)]
pub use rstd::slice;
pub use sp_std::slice;
#[macro_use]
pub mod validate_block;