Skip to content

Commit

Permalink
feat(cmd/network/status): Sort paratimes
Browse files Browse the repository at this point in the history
  • Loading branch information
amela committed Oct 22, 2024
1 parent b395521 commit 71c7d30
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion cmd/network/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ package network
import (
"context"
"fmt"
"sort"
"strings"
"time"

"github.com/spf13/cobra"
flag "github.com/spf13/pflag"

coreCommon "github.com/oasisprotocol/oasis-core/go/common"

"github.com/oasisprotocol/oasis-sdk/client-sdk/go/connection"

"github.com/oasisprotocol/cli/cmd/common"
Expand Down Expand Up @@ -132,7 +135,22 @@ var (
fmt.Println("==== ParaTimes ====")
}

for _, runtime := range nodeStatus.Runtimes {
keys := make([][]interface{}, 0, len(nodeStatus.Runtimes))
for key, runtime := range nodeStatus.Runtimes {
descriptor := runtime.Descriptor
paratimeName := "unknown"
if descriptor != nil {
paratimeName = getParatimeName(cfg, descriptor.ID.String())
}
newRow := []interface{}{key, paratimeName}
keys = append(keys, newRow)
}
sort.Slice(keys, func(i, j int) bool {
return keys[i][1].(string) < keys[j][1].(string)
})

for _, key := range keys {
runtime := nodeStatus.Runtimes[key[0].(coreCommon.Namespace)]
descriptor := runtime.Descriptor
if descriptor != nil {
paratimeName := getParatimeName(cfg, descriptor.ID.String())
Expand Down

0 comments on commit 71c7d30

Please sign in to comment.