Skip to content

Commit fa0e71f

Browse files
committed
fix(ev-deployer): clean up command ordering and stale fee_vault reference
Move Init subcommand first in help output and remove leftover fee_vault mention from --contract flag doc.
1 parent 70111fd commit fa0e71f

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

bin/ev-deployer/src/main.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ struct Cli {
2121

2222
#[derive(Subcommand)]
2323
enum Command {
24+
/// Generate a starter config file with all supported contracts commented out.
25+
Init {
26+
/// Write config to this file instead of stdout.
27+
#[arg(long)]
28+
output: Option<PathBuf>,
29+
},
2430
/// Generate genesis alloc JSON from a deploy config.
2531
Genesis {
2632
/// Path to the deploy TOML config.
@@ -43,19 +49,13 @@ enum Command {
4349
#[arg(long)]
4450
addresses_out: Option<PathBuf>,
4551
},
46-
/// Generate a starter config file with all supported contracts commented out.
47-
Init {
48-
/// Write config to this file instead of stdout.
49-
#[arg(long)]
50-
output: Option<PathBuf>,
51-
},
5252
/// Compute the address for a configured contract.
5353
ComputeAddress {
5454
/// Path to the deploy TOML config.
5555
#[arg(long)]
5656
config: PathBuf,
5757

58-
/// Contract name (`admin_proxy` or `fee_vault`).
58+
/// Contract name (e.g. `admin_proxy`).
5959
#[arg(long)]
6060
contract: String,
6161
},

0 commit comments

Comments
 (0)