One node two runtimes (#191)

* One node two runtimes

This enables the rococo-collator to run the normal and the contracts runtime.

* Fix tests
This commit is contained in:
Bastian Köcher
2020-08-11 11:35:54 +02:00
committed by GitHub
parent 96da14c14f
commit 2c63ccb9eb
33 changed files with 1958 additions and 1466 deletions
@@ -25,7 +25,7 @@ use cumulus_primitives::ParaId;
/// Configuration trait of this pallet.
pub trait Trait: frame_system::Trait {}
impl <T: Trait> Get<ParaId> for Module<T> {
impl<T: Trait> Get<ParaId> for Module<T> {
fn get() -> ParaId {
Self::parachain_id()
}