Skip to content

Commit

Permalink
fix(network): oasis network show runtimes -> paratimes
Browse files Browse the repository at this point in the history
  • Loading branch information
matevz committed May 31, 2023
1 parent c60fc0e commit 22848b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/network/show.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const (
)

var showCmd = &cobra.Command{
Use: "show { <id> | entities | nodes | runtimes | validators | native-token | gas-costs }",
Use: "show { <id> | entities | nodes | paratimes | validators | native-token | gas-costs }",
Short: "Show network properties",
Long: "Show network property stored in the registry, scheduler, genesis document or chain. Query by ID, hash or a specified kind.",
Args: cobra.ExactArgs(1),
Expand Down Expand Up @@ -221,7 +221,7 @@ func selectorFromString(s string) propertySelector {
return selEntities
case "nodes":
return selNodes
case "runtimes", "paratimes":
case "paratimes", "runtimes":
return selRuntimes
case "validators":
return selValidators
Expand Down

0 comments on commit 22848b8

Please sign in to comment.