diff --git a/crates/sui/src/client_commands.rs b/crates/sui/src/client_commands.rs index f8d4fd6e8a9c9..98ecf4bb38758 100644 --- a/crates/sui/src/client_commands.rs +++ b/crates/sui/src/client_commands.rs @@ -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, /// 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, /// 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, /// Package build options