Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Companion PR for https://github.com/paritytech/substrate/pull/6221 #1213

Merged
merged 6 commits into from
Jun 10, 2020
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use structopt::StructOpt;

#[allow(missing_docs)]
#[derive(Debug, StructOpt, Clone)]
#[derive(Debug, StructOpt)]
pub enum Subcommand {
#[allow(missing_docs)]
#[structopt(flatten)]
Expand All @@ -38,14 +38,14 @@ pub enum Subcommand {
}

#[allow(missing_docs)]
#[derive(Debug, StructOpt, Clone)]
#[derive(Debug, StructOpt)]
pub struct ValidationWorkerCommand {
#[allow(missing_docs)]
pub mem_id: String,
}

#[allow(missing_docs)]
#[derive(Debug, StructOpt, Clone)]
#[derive(Debug, StructOpt)]
pub struct RunCmd {
#[allow(missing_docs)]
#[structopt(flatten)]
Expand Down Expand Up @@ -82,7 +82,7 @@ pub struct RunCmd {
}

#[allow(missing_docs)]
#[derive(Debug, StructOpt, Clone)]
#[derive(Debug, StructOpt)]
pub struct Cli {
#[allow(missing_docs)]
#[structopt(subcommand)]
Expand Down