Skip to content

Commit

Permalink
fix autocli (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 authored Aug 6, 2024
1 parent 3479c41 commit 91cfb35
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions x/ibc/perm/autocli.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ func (am AppModule) AutoCLIOptions() *autocliv1.ModuleOptions {
Service: permv1.Query_ServiceDesc.ServiceName,
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
{
RpcMethod: "PermissionedRelayer",
Use: "permissioned-relayer",
Alias: []string{"relayer"},
Short: "Query the permissioned relayer of the IBC connection",
Long: "Query the permissioned relayer of the IBC connection",
RpcMethod: "PermissionedRelayersByChannel",
Use: "permissioned-relayers",
Alias: []string{"relayers"},
Short: "Query the permissioned relayers of the IBC connection",
Long: "Query the permissioned relayers of the IBC connection",
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
{ProtoField: "port_id"},
{ProtoField: "channel_id"},
},
},
{
RpcMethod: "PermissionedRelayers",
Use: "permissioned-relayers",
Alias: []string{"relayers"},
Short: "Query the permissioned relayers",
Long: "Query the permissioned relayers",
RpcMethod: "AllPermissionedRelayers",
Use: "all-permissioned-relayers",
Alias: []string{"all-relayers"},
Short: "Query the permissioned relayers of all IBC connections",
Long: "Query the permissioned relayers of all IBC connections",
},
},
},
Expand Down

0 comments on commit 91cfb35

Please sign in to comment.