Skip to content

Commit

Permalink
CR Fix: "... and prefixes"
Browse files Browse the repository at this point in the history
  • Loading branch information
shleikes committed Dec 31, 2023
1 parent 620343f commit 1c3e894
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x/timerstore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ The `timerstore` module supports the following queries:
| ------------ | ----------------------------------- | ------------------------------------------------ |
| `all-timers` | store-key (string), prefix (string) | Shows all timers of a specific timer store |
| `next` | store-key (string), prefix (string) | Shows the next timeout of a specific timer store |
| `store-keys` | none | Shows all timer store keys |
| `store-keys` | none | Shows all timer store keys and prefixes |

## Transactions

Expand Down
2 changes: 1 addition & 1 deletion x/timerstore/client/cli/query_store_keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var _ = strconv.Itoa(0)
func CmdStoreKeys() *cobra.Command {
cmd := &cobra.Command{
Use: "store-keys",
Short: "Query all timer store keys",
Short: "Query all timer store keys and prefixes",
Args: cobra.ExactArgs(0),
RunE: func(cmd *cobra.Command, args []string) (err error) {
clientCtx, err := client.GetClientQueryContext(cmd)
Expand Down

0 comments on commit 1c3e894

Please sign in to comment.