Skip to content
Snippets Groups Projects
Commit b5e7fbfb authored by Michal Kucharczyk's avatar Michal Kucharczyk Committed by GitHub
Browse files

Service::Error: Storage variant removed (#13481)

parent a1c546e9
Branches
No related merge requests found
......@@ -560,7 +560,8 @@ pub fn new_full(config: Configuration, cli: Cli) -> Result<TaskManager, ServiceE
cli.storage_monitor,
database_source,
&task_manager.spawn_essential_handle(),
)?;
)
.map_err(|e| ServiceError::Application(e.into()))?;
Ok(task_manager)
}
......
......@@ -48,9 +48,6 @@ pub enum Error {
#[error(transparent)]
Telemetry(#[from] sc_telemetry::Error),
#[error(transparent)]
Storage(#[from] sc_storage_monitor::Error),
#[error("Best chain selection strategy (SelectChain) is not provided.")]
SelectChainRequired,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment