mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 03:38:00 +00:00
0efd15c0c5
* Update Cargo.lock * Fix for substrate update * Update Cargo.lock * Fix for substrate update * Fix for substrate update * Fix for substrate update * Fix for substrate update * Update Cargo.lock * Fix for substrate update * Fix for substrate update * Fix for substrate update * Fix for substrate update * Fix for substrate update * WIP * Temporary fix until polkadot is fixed * WIP * WIP
53 lines
1.6 KiB
Rust
53 lines
1.6 KiB
Rust
// Copyright 2019 Parity Technologies (UK) Ltd.
|
|
// This file is part of Cumulus.
|
|
|
|
// Cumulus is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Cumulus is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Cumulus. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use sc_cli;
|
|
pub use polkadot_cli::Cli as PolkadotCli;
|
|
use structopt::StructOpt;
|
|
|
|
/// Sub-commands supported by the collator.
|
|
#[derive(Debug, StructOpt, Clone)]
|
|
pub enum Subcommand {
|
|
#[structopt(flatten)]
|
|
Base(sc_cli::Subcommand),
|
|
/// Export the genesis state of the parachain.
|
|
#[structopt(name = "export-genesis-state")]
|
|
ExportGenesisState(ExportGenesisStateCommand),
|
|
}
|
|
|
|
/// Command for exporting the genesis state of the parachain
|
|
#[derive(Debug, StructOpt, Clone)]
|
|
pub struct ExportGenesisStateCommand {
|
|
/// Output file name or stdout if unspecified.
|
|
#[structopt(parse(from_os_str))]
|
|
pub output: Option<PathBuf>,
|
|
}
|
|
|
|
#[derive(Debug, StructOpt, Clone)]
|
|
pub struct Cli {
|
|
#[structopt(subcommand)]
|
|
pub subcommand: Option<Subcommand>,
|
|
|
|
#[structopt(flatten)]
|
|
pub run: sc_cli::RunCmd,
|
|
|
|
/// Relaychain arguments
|
|
#[structopt(raw = true)]
|
|
pub relaychain_args: Vec<String>,
|
|
}
|