We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08d0441 commit 871a9a1Copy full SHA for 871a9a1
protocol-units/bridge/cli/src/clap.rs
@@ -13,5 +13,5 @@ pub struct CliOptions {
13
pub enum Commands {
14
/// Ethereum to Movement Labs bridge commands
15
#[command(subcommand)]
16
- BridgeEthToMovETH(eth_to_movement::Commands),
+ BridgeETHtoMOVETH(eth_to_movement::Commands),
17
}
protocol-units/bridge/cli/src/main.rs
@@ -13,7 +13,7 @@ async fn inner_main() -> anyhow::Result<()> {
let cli = CliOptions::parse();
match &cli.command {
- Commands::BridgeEthToMovETH(command) => {
+ Commands::BridgeETHtoMOVETH(command) => {
bridge_cli::eth_to_moveth::execute(command).await?;
18
19
0 commit comments