We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56f3ea2 commit 3cb0741Copy full SHA for 3cb0741
cmd/collators.go
@@ -24,10 +24,12 @@ var collatorsTableCmd = &cobra.Command{
24
compact, _ := cmd.Flags().GetBool("compact")
25
sortKey, _ := cmd.Flags().GetString("sort-key")
26
sortDesc, _ := cmd.Flags().GetBool("sort-desc")
27
+ revokeRounds, _ := cmd.Flags().GetUint32("revoke-rounds")
28
options := config.TableOptions{
- Compact: compact,
29
- SortKey: sortKey,
30
- SortDesc: sortDesc,
+ Compact: compact,
+ SortKey: sortKey,
31
+ SortDesc: sortDesc,
32
+ RevokeRounds: revokeRounds,
33
}
34
data, client := fetchPool(cmd)
35
display.DumpTable(data, client, options)
0 commit comments