Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
emidev98 committed Oct 16, 2023
1 parent d5f162c commit 807ce1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/allianced/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ func initRootCmd(rootCmd *cobra.Command, encodingConfig params.EncodingConfig) {
func genesisCommand(encodingConfig params.EncodingConfig, cmds ...*cobra.Command) *cobra.Command {
cmd := genutilcli.GenesisCoreCommand(encodingConfig.TxConfig, app.ModuleBasics, app.DefaultNodeHome)

for _, sub_cmd := range cmds {
cmd.AddCommand(sub_cmd)
for _, subCmd := range cmds {
cmd.AddCommand(subCmd)
}
return cmd
}
Expand Down

0 comments on commit 807ce1e

Please sign in to comment.