Skip to content

Commit

Permalink
docs(x/evidence): fix evidence module subcommands help message (#21589)
Browse files Browse the repository at this point in the history
  • Loading branch information
lilasxie authored Sep 9, 2024
1 parent 95383f5 commit 28bcdbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/evidence/autocli.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ func (am AppModule) AutoCLIOptions() *autocliv1.ModuleOptions {
RpcMethod: "Evidence",
Use: "evidence <hash>",
Short: "Query for evidence by hash",
Example: fmt.Sprintf("%s query evidence DF0C23E8634E480F84B9D5674A7CDC9816466DEC28A3358F73260F68D28D7660", version.AppName),
Example: fmt.Sprintf("%s query evidence evidence DF0C23E8634E480F84B9D5674A7CDC9816466DEC28A3358F73260F68D28D7660", version.AppName),
PositionalArgs: []*autocliv1.PositionalArgDescriptor{{ProtoField: "hash"}},
},
{
RpcMethod: "AllEvidence",
Use: "list",
Short: "Query all (paginated) submitted evidence",
Example: fmt.Sprintf("%s query evidence --page=2 --page-limit=50", version.AppName),
Example: fmt.Sprintf("%s query evidence list --page=2 --page-limit=50", version.AppName),
},
},
},
Expand Down

0 comments on commit 28bcdbc

Please sign in to comment.