diff --git a/substrate/client/cli/src/lib.rs b/substrate/client/cli/src/lib.rs index 849a2d2cce..244f6e167f 100644 --- a/substrate/client/cli/src/lib.rs +++ b/substrate/client/cli/src/lib.rs @@ -196,7 +196,10 @@ pub trait SubstrateCli: Sized { /// Create a runner for the command provided in argument. This will create a Configuration and /// a tokio runtime - fn create_runner(&self, command: &T) -> error::Result> { + fn create_runner, DVC: DefaultConfigurationValues>( + &self, + command: &T, + ) -> error::Result> { let tokio_runtime = build_runtime()?; let config = command.create_configuration(self, tokio_runtime.handle().clone())?;