Companion to #8966 (#3186)

* update rustls to be compat with jsronrpsee 0.2.0

* Stub try-cli when feat not enabled

* update Substrate

Co-authored-by: parity-processbot <>
This commit is contained in:
Zeke Mostov
2021-06-09 15:40:04 -07:00
committed by GitHub
parent 4de30aa5d9
commit b2c9305d77
3 changed files with 170 additions and 158 deletions
+5 -1
View File
@@ -57,10 +57,14 @@ pub enum Subcommand {
)]
Benchmark(frame_benchmarking_cli::BenchmarkCmd),
/// Testing subcommand for runtime testing and trying.
/// Try some command against runtime state.
#[cfg(feature = "try-runtime")]
TryRuntime(try_runtime_cli::TryRuntimeCmd),
/// Try some command against runtime state. Note: `try-runtime` feature must be enabled.
#[cfg(not(feature = "try-runtime"))]
TryRuntime,
/// Key management cli utilities
Key(sc_cli::KeySubcommand),
}