Skip to content

Commit

Permalink
Merge pull request #86 from oasisprotocol/matevz/fix/runtimes-paratimes
Browse files Browse the repository at this point in the history
fix(network): oasis network show runtimes -> paratimes
  • Loading branch information
matevz committed Jun 1, 2023
2 parents c60fc0e + 22848b8 commit ab18c83
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 ab18c83

Please sign in to comment.