Skip to content

Commit

Permalink
fix autocli
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 committed Sep 25, 2024
1 parent 16bb2b7 commit d577a4a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions x/ibc/perm/autocli.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ func (am AppModule) AutoCLIOptions() *autocliv1.ModuleOptions {
Service: permv1.Query_ServiceDesc.ServiceName,
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
{
RpcMethod: "PermissionedRelayersByChannel",
Use: "permissioned-relayers",
Alias: []string{"relayers"},
RpcMethod: "ChannelState",
Use: "channel-state",
Alias: []string{"channel"},
Short: "Query the permissioned relayers of the IBC connection",
Long: "Query the permissioned relayers of the IBC connection",
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
Expand All @@ -23,9 +23,9 @@ func (am AppModule) AutoCLIOptions() *autocliv1.ModuleOptions {
},
},
{
RpcMethod: "AllPermissionedRelayers",
Use: "all-permissioned-relayers",
Alias: []string{"all-relayers"},
RpcMethod: "ChannelStates",
Use: "channel-states",
Alias: []string{"channels"},
Short: "Query the permissioned relayers of all IBC connections",
Long: "Query the permissioned relayers of all IBC connections",
},
Expand Down

0 comments on commit d577a4a

Please sign in to comment.