Skip to content

Commit

Permalink
chore: remove stale references to packet-server in channel/v2.
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisJim committed Oct 14, 2024
1 parent a282c1a commit c3ed628
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions modules/core/04-channel/v2/client/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import (

"github.com/cosmos/cosmos-sdk/client"

"github.com/cosmos/ibc-go/v9/modules/core/packet-server/types"
"github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types"
)

// GetQueryCmd returns the query commands for the IBC packet-server.
// GetQueryCmd returns the query commands for the IBC channel/v2.
func GetQueryCmd() *cobra.Command {
queryCmd := &cobra.Command{
Use: types.SubModuleName,
Short: "IBC packet-server query subcommands",
Short: "IBC channel/v2 query subcommands",
DisableFlagParsing: true,
SuggestionsMinimumDistance: 2,
RunE: client.ValidateCmd,
Expand All @@ -25,11 +25,11 @@ func GetQueryCmd() *cobra.Command {
return queryCmd
}

// NewTxCmd returns the command to submit transactions defined for the IBC packet-server.
// NewTxCmd returns the command to submit transactions defined for IBC channel/v2.
func NewTxCmd() *cobra.Command {
txCmd := &cobra.Command{
Use: types.SubModuleName,
Short: "IBC packet-server transaction subcommands",
Short: "IBC channel/v2 transaction subcommands",
DisableFlagParsing: true,
SuggestionsMinimumDistance: 2,
RunE: client.ValidateCmd,
Expand Down
2 changes: 1 addition & 1 deletion modules/core/04-channel/v2/keeper/grpc_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (

var _ types.QueryServer = (*queryServer)(nil)

// queryServer implements the packet-server types.QueryServer interface.
// queryServer implements the channel/v2 types.QueryServer interface.
type queryServer struct {
*Keeper
}
Expand Down

0 comments on commit c3ed628

Please sign in to comment.