Skip to content
Snippets Groups Projects
Commit 8662ff76 authored by Cecile Tonglet's avatar Cecile Tonglet Committed by GitHub
Browse files

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

* Initial commit

Forked at: fc45a8e6
Parent branch: origin/master

* Remove unnecessary Clone derives

* Update Cargo.lock

* Update Cargo.lock again
parent 569b30e8
No related merge requests found
This diff is collapsed.
......@@ -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)]
......@@ -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)]
......@@ -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)]
......
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