Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
More skipped group names
  • Loading branch information
skunert committed Oct 18, 2022
commit 0f600035c921fd5e11795bf29cd256273c57a70f
1 change: 1 addition & 0 deletions client/cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ use url::Url;

/// The `purge-chain` command used to remove the whole chain: the parachain and the relay chain.
#[derive(Debug, clap::Parser)]
#[group(skip)]
pub struct PurgeChainCmd {
/// The base struct of the purge-chain command.
#[command(flatten)]
Expand Down
2 changes: 2 additions & 0 deletions test/service/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ pub enum Subcommand {
}

#[derive(Debug, clap::Parser)]
#[group(skip)]
pub struct ExportGenesisStateCommand {
#[arg(default_value_t = 2000u32)]
pub parachain_id: u32,
Expand All @@ -80,6 +81,7 @@ impl CliConfiguration for ExportGenesisStateCommand {

/// Command for exporting the genesis wasm file.
#[derive(Debug, clap::Parser)]
#[group(skip)]
pub struct ExportGenesisWasmCommand {
#[arg(default_value_t = 2000u32)]
pub parachain_id: u32,
Expand Down