Update polkadot & substrate (#76)

This commit is contained in:
Cecile Tonglet
2020-04-15 12:25:41 +02:00
committed by GitHub
parent 461b971ccc
commit 7431075d01
14 changed files with 751 additions and 603 deletions
+9 -1
View File
@@ -17,7 +17,6 @@
use std::path::PathBuf;
use sc_cli;
pub use polkadot_cli::Cli as PolkadotCli;
use structopt::StructOpt;
/// Sub-commands supported by the collator.
@@ -55,3 +54,12 @@ pub struct Cli {
#[structopt(raw = true)]
pub relaychain_args: Vec<String>,
}
#[derive(Debug, StructOpt, Clone)]
pub struct PolkadotCli {
#[structopt(flatten)]
pub base: polkadot_cli::RunCmd,
#[structopt(skip)]
pub base_path: Option<PathBuf>,
}