difftreelog
Merge branch 'develop' into release/opal-v918000
in: master
2 files changed
node/cli/src/chain_spec.rsdiffbeforeafterboth38pub type OpalChainSpec = sc_service::GenericChainSpec<opal_runtime::GenesisConfig, Extensions>;38pub type OpalChainSpec = sc_service::GenericChainSpec<opal_runtime::GenesisConfig, Extensions>;393940pub enum RuntimeId {40pub enum RuntimeId {41 #[cfg(feature = "unique-runtime")]41 Unique,42 Unique,4344 #[cfg(feature = "quartz-runtime")]42 Quartz,45 Quartz,4643 Opal,47 Opal,node/cli/src/service.rsdiffbeforeafterboth616162use unique_runtime_common::types::{AuraId, RuntimeInstance, AccountId, Balance, Index, Hash, Block};62use unique_runtime_common::types::{AuraId, RuntimeInstance, AccountId, Balance, Index, Hash, Block};636364/// Native executor instance.64/// Unique native executor instance.65#[cfg(feature = "unique-runtime")]65pub struct UniqueRuntimeExecutor;66pub struct UniqueRuntimeExecutor;6768#[cfg(feature = "quartz-runtime")]69/// Quartz native executor instance.7066pub struct QuartzRuntimeExecutor;71pub struct QuartzRuntimeExecutor;7273/// Opal native executor instance.67pub struct OpalRuntimeExecutor;74pub struct OpalRuntimeExecutor;687569#[cfg(feature = "unique-runtime")]76#[cfg(feature = "unique-runtime")]