Skip to content

Commit

Permalink
fixup: No short flags
Browse files Browse the repository at this point in the history
  • Loading branch information
amnn committed Mar 28, 2024
1 parent 9844159 commit ca47055
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/sui/src/client_commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -662,16 +662,16 @@ pub enum SuiClientCommands {
#[clap(name = "verify-bytecode-meter")]
VerifyBytecodeMeter {
/// Path to directory containing a Move package, (defaults to the current directory)
#[clap(name = "package", long, short, global = true)]
#[clap(name = "package", long, global = true)]
package_path: Option<PathBuf>,

/// Protocol version to use for the bytecode verifier (defaults to the latest protocol
/// version)
#[clap(name = "protocol-version", long, short = 'P')]
#[clap(name = "protocol-version", long)]
protocol_version: Option<u64>,

/// Path to specific pre-compiled module bytecode to verify (instead of an entire package)
#[clap(name = "module", long, short, global = true)]
#[clap(name = "module", long, global = true)]
module_path: Option<PathBuf>,

/// Package build options
Expand Down

0 comments on commit ca47055

Please sign in to comment.