Skip to content
Snippets Groups Projects
Unverified Commit c89e60ed authored by bgallois's avatar bgallois
Browse files

fix unused imports

parent 7d616be2
No related branches found
No related tags found
No related merge requests found
Pipeline #36108 failed
...@@ -24,10 +24,10 @@ use crate::cli::{Cli, Subcommand}; ...@@ -24,10 +24,10 @@ use crate::cli::{Cli, Subcommand};
#[cfg(feature = "g1")] #[cfg(feature = "g1")]
use crate::service::g1_executor::G1Executor; use crate::service::g1_executor::G1Executor;
#[cfg(feature = "gdev")] #[cfg(feature = "gdev")]
#[cfg(feature = "runtime-benchmarks")] #[cfg(feature = "try-runtime")]
use crate::service::gdev_executor::GDevExecutor; use crate::service::gdev_executor::GDevExecutor;
#[cfg(feature = "gtest")] #[cfg(feature = "gtest")]
#[cfg(feature = "runtime-benchmarks")] #[cfg(feature = "try-runtime")]
use crate::service::gtest_executor::GTestExecutor; use crate::service::gtest_executor::GTestExecutor;
use crate::service::{IdentifyRuntimeType, RuntimeType}; use crate::service::{IdentifyRuntimeType, RuntimeType};
use crate::{chain_spec, service}; use crate::{chain_spec, service};
......
...@@ -48,6 +48,7 @@ type FullClient<RuntimeApi> = ...@@ -48,6 +48,7 @@ type FullClient<RuntimeApi> =
type FullBackend = sc_service::TFullBackend<Block>; type FullBackend = sc_service::TFullBackend<Block>;
type FullSelectChain = sc_consensus::LongestChain<FullBackend, Block>; type FullSelectChain = sc_consensus::LongestChain<FullBackend, Block>;
#[cfg(feature = "try-runtime")]
#[cfg(feature = "gdev")] #[cfg(feature = "gdev")]
pub mod gdev_executor { pub mod gdev_executor {
pub use gdev_runtime; pub use gdev_runtime;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment