Skip to content

Commit

Permalink
fix: command helper strings (#689)
Browse files Browse the repository at this point in the history
* add queries to new dbs created for redelegations

* add CHANGELOG.md

* fix command strings
  • Loading branch information
puneet2019 authored Dec 4, 2023
1 parent f672420 commit 46123b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions x/liquidstakeibc/client/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ func QueryRedelegationsCmd() *cobra.Command {
Args: cobra.ExactArgs(1),
Long: strings.TrimSpace(
fmt.Sprintf(
`Query the exchange rate of a host chain: $ %s query liquidstakeibc exchange-rate [chain-id]`,
`Query the redelegations of a host chain: $ %s query liquidstakeibc redelegations [chain-id]`,
version.AppName,
),
),
Expand Down Expand Up @@ -446,11 +446,11 @@ func QueryRedelegationsCmd() *cobra.Command {
func QueryRedelegationTxCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "redelegation-tx [chain-id]",
Short: "Query the exchange rate of a host chain",
Short: "Query the redelegation txs of a host chain",
Args: cobra.ExactArgs(1),
Long: strings.TrimSpace(
fmt.Sprintf(
`Query the exchange rate of a host chain: $ %s query liquidstakeibc exchange-rate [chain-id]`,
`Query the redelegation txs of a host chain: $ %s query liquidstakeibc redelegation-tx [chain-id]`,
version.AppName,
),
),
Expand Down

0 comments on commit 46123b5

Please sign in to comment.