Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions modules/core/02-client/client/cli/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ func GetCmdQueryClientStatus() *cobra.Command {
},
}

flags.AddQueryFlagsToCmd(cmd)

return cmd
}

Expand Down
2 changes: 0 additions & 2 deletions modules/core/02-client/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ func NewCreateClientCmd() *cobra.Command {
}

flags.AddTxFlagsToCmd(cmd)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nit] unnecessary changes to this file

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Other commands in the same file had that statement next to the return, so I removed that empty line for consistency. I can revert it, if you want; have no strong preference...

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah okay, no it's not a big deal at all!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I actually kinda like the spaces, a little confusing why we format differently between query.go and tx.go

return cmd
}

Expand Down Expand Up @@ -238,7 +237,6 @@ func NewUpgradeClientCmd() *cobra.Command {
}

flags.AddTxFlagsToCmd(cmd)

return cmd
}

Expand Down