Skip to content

Commit 871a9a1

Browse files
committed
request
1 parent 08d0441 commit 871a9a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

protocol-units/bridge/cli/src/clap.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ pub struct CliOptions {
1313
pub enum Commands {
1414
/// Ethereum to Movement Labs bridge commands
1515
#[command(subcommand)]
16-
BridgeEthToMovETH(eth_to_movement::Commands),
16+
BridgeETHtoMOVETH(eth_to_movement::Commands),
1717
}

protocol-units/bridge/cli/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async fn inner_main() -> anyhow::Result<()> {
1313
let cli = CliOptions::parse();
1414

1515
match &cli.command {
16-
Commands::BridgeEthToMovETH(command) => {
16+
Commands::BridgeETHtoMOVETH(command) => {
1717
bridge_cli::eth_to_moveth::execute(command).await?;
1818
}
1919
}

0 commit comments

Comments
 (0)