Skip to content

Commit

Permalink
chore: fix cmd example for PruneAcknowledgements (#5554)
Browse files Browse the repository at this point in the history
(cherry picked from commit c885ad5)
  • Loading branch information
damiannolan authored and mergify[bot] committed Jan 9, 2024
1 parent 6c5f36e commit 86492d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core/04-channel/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func NewPruneAcknowledgementsTxCmd() *cobra.Command {
Short: "Prune expired packet acknowledgements stored in IBC state",
Long: `Prune expired packet acknowledgements and receipts stored in IBC state. Packet ackwnowledgements and
receipts are considered expired if a channel has been upgraded.`,
Example: fmt.Sprintf("%s tx ibc prune-acknowledgements [port] [channel] [limit]", version.AppName),
Example: fmt.Sprintf("%s tx %s %s prune-acknowledgements transfer channel-0 1000", version.AppName, ibcexported.ModuleName, types.SubModuleName),

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / build (arm)

undefined: ibcexported

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / build (arm64)

undefined: ibcexported

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / lint

undefined: ibcexported (typecheck)

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / lint

undefined: ibcexported) (typecheck)

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / lint

undefined: ibcexported (typecheck)

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / lint

undefined: ibcexported) (typecheck)

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / tests (00)

undefined: ibcexported

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / tests (01)

undefined: ibcexported

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / tests (01)

undefined: ibcexported

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / tests (03)

undefined: ibcexported

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / tests (03)

undefined: ibcexported

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / tests (02)

undefined: ibcexported

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / tests (02)

undefined: ibcexported

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / tests (02)

undefined: ibcexported

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / tests (02)

undefined: ibcexported

Check failure on line 24 in modules/core/04-channel/client/cli/tx.go

View workflow job for this annotation

GitHub Actions / tests (02)

undefined: ibcexported
Args: cobra.ExactArgs(3),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientTxContext(cmd)
Expand Down

0 comments on commit 86492d9

Please sign in to comment.