From 7eb47b357280f56b1b5d88000b260530e5cfc485 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Zemanovi=C4=8D?= Date: Thu, 28 Jul 2022 14:58:23 +0200 Subject: [PATCH] cli: update binary names dispatch for namada --- apps/src/bin/anoma/cli.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/src/bin/anoma/cli.rs b/apps/src/bin/anoma/cli.rs index 6a3c58b330..b0ed783276 100644 --- a/apps/src/bin/anoma/cli.rs +++ b/apps/src/bin/anoma/cli.rs @@ -43,7 +43,7 @@ fn handle_command(cmd: cli::cmds::Anoma, raw_sub_cmd: String) -> Result<()> { | cli::cmds::Anoma::Ledger(_) | cli::cmds::Anoma::Gossip(_) | cli::cmds::Anoma::Matchmaker(_) => { - handle_subcommand("anoman", sub_args) + handle_subcommand("namadan", sub_args) } cli::cmds::Anoma::Client(_) | cli::cmds::Anoma::TxCustom(_) @@ -53,8 +53,8 @@ fn handle_command(cmd: cli::cmds::Anoma, raw_sub_cmd: String) -> Result<()> { | cli::cmds::Anoma::TxMintNft(_) | cli::cmds::Anoma::TxInitProposal(_) | cli::cmds::Anoma::TxVoteProposal(_) - | cli::cmds::Anoma::Intent(_) => handle_subcommand("anomac", sub_args), - cli::cmds::Anoma::Wallet(_) => handle_subcommand("anomaw", sub_args), + | cli::cmds::Anoma::Intent(_) => handle_subcommand("namadac", sub_args), + cli::cmds::Anoma::Wallet(_) => handle_subcommand("namadaw", sub_args), } }