From 43b4380d36ac1cc79fcfa02bfdf0a7f52dd13c65 Mon Sep 17 00:00:00 2001 From: Blake <104744707+r3v4s@users.noreply.github.com> Date: Sat, 8 Jun 2024 04:58:18 +0900 Subject: [PATCH] fix(gnoland): fix: wrong help message for balances add (#2284) command is `balances add`, but help message was for `validator add`
Contributors' checklist... - [ ] Added new tests, or not needed, or not feasible - [ ] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [ ] Updated the official documentation or not needed - [ ] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [ ] Added references to related issues and PRs - [ ] Provided any useful hints for running manual tests - [ ] Added new benchmarks to [generated graphs](https://gnoland.github.io/benchmarks), if any. More info [here](https://github.com/gnolang/gno/blob/master/.benchmarks/README.md).
--- gno.land/cmd/gnoland/genesis_balances_add.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gno.land/cmd/gnoland/genesis_balances_add.go b/gno.land/cmd/gnoland/genesis_balances_add.go index c6d856f8363..4c8603c1273 100644 --- a/gno.land/cmd/gnoland/genesis_balances_add.go +++ b/gno.land/cmd/gnoland/genesis_balances_add.go @@ -43,7 +43,7 @@ func newBalancesAddCmd(rootCfg *balancesCfg, io commands.IO) *commands.Command { commands.Metadata{ Name: "add", ShortUsage: "balances add [flags]", - ShortHelp: "adds a new validator to the genesis.json", + ShortHelp: "adds balances to the genesis.json", }, cfg, func(ctx context.Context, _ []string) error {