git.delta.rocks / unique-network / refs/commits / 2dfd73643010

difftreelog

Merge branch 'develop' into release/opal-v918000

Igor Kozyrev2022-03-29parents: #412ca93 #80d5011.patch.diff
in: master

2 files changed

modifiednode/cli/src/chain_spec.rsdiffbeforeafterboth
38pub type OpalChainSpec = sc_service::GenericChainSpec<opal_runtime::GenesisConfig, Extensions>;38pub type OpalChainSpec = sc_service::GenericChainSpec<opal_runtime::GenesisConfig, Extensions>;
3939
40pub enum RuntimeId {40pub enum RuntimeId {
41 #[cfg(feature = "unique-runtime")]
41 Unique,42 Unique,
43
44 #[cfg(feature = "quartz-runtime")]
42 Quartz,45 Quartz,
46
43 Opal,47 Opal,
modifiednode/cli/src/service.rsdiffbeforeafterboth
6161
62use unique_runtime_common::types::{AuraId, RuntimeInstance, AccountId, Balance, Index, Hash, Block};62use unique_runtime_common::types::{AuraId, RuntimeInstance, AccountId, Balance, Index, Hash, Block};
6363
64/// Native executor instance.64/// Unique native executor instance.
65#[cfg(feature = "unique-runtime")]
65pub struct UniqueRuntimeExecutor;66pub struct UniqueRuntimeExecutor;
67
68#[cfg(feature = "quartz-runtime")]
69/// Quartz native executor instance.
70
66pub struct QuartzRuntimeExecutor;71pub struct QuartzRuntimeExecutor;
72
73/// Opal native executor instance.
67pub struct OpalRuntimeExecutor;74pub struct OpalRuntimeExecutor;
6875
69#[cfg(feature = "unique-runtime")]76#[cfg(feature = "unique-runtime")]