Skip to content

Commit

Permalink
Merge branch 'tomas/update-bin-names' (#246)
Browse files Browse the repository at this point in the history
* tomas/update-bin-names:
  cli: update binary names dispatch for namada
  • Loading branch information
tzemanovic committed Aug 1, 2022
2 parents a3dfa1f + 7eb47b3 commit a5d68f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/src/bin/anoma/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(_)
Expand All @@ -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),
}
}

Expand Down

0 comments on commit a5d68f1

Please sign in to comment.