Function sc_service::client::new_with_backend [−][src]
pub fn new_with_backend<B, E, Block, S, RA>(
backend: Arc<B>,
executor: E,
build_genesis_storage: &S,
keystore: Option<SyncCryptoStorePtr>,
spawn_handle: Box<dyn SpawnNamed>,
prometheus_registry: Option<Registry>,
telemetry: Option<TelemetryHandle>,
config: ClientConfig<Block>
) -> Result<Client<B, LocalCallExecutor<Block, B, E>, Block, RA>> where
E: CodeExecutor + RuntimeVersionOf,
S: BuildStorage,
Block: BlockT,
B: LocalBackend<Block> + 'static,
Expand description
Create a client with the explicitly provided backend. This is useful for testing backend implementations.