forked from TrueCloudLab/frostfs-node
[#81] cmd/neofs-cli: Use hex encoding of node's public key
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
25398262fc
commit
0021f1cc5f
1 changed files with 2 additions and 2 deletions
|
@ -3,10 +3,10 @@ package cmd
|
|||
import (
|
||||
"bytes"
|
||||
"context"
|
||||
"encoding/hex"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
|
||||
"github.com/mr-tron/base58"
|
||||
"github.com/nspcc-dev/neofs-api-go/pkg/netmap"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
@ -96,7 +96,7 @@ func prettyPrintNodeInfo(i *netmap.NodeInfo, jsonEncoding bool) {
|
|||
return
|
||||
}
|
||||
|
||||
fmt.Println("key:", base58.Encode(i.PublicKey()))
|
||||
fmt.Println("key:", hex.EncodeToString(i.PublicKey()))
|
||||
fmt.Println("address:", i.Address())
|
||||
fmt.Println("state:", i.State())
|
||||
|
||||
|
|
Loading…
Reference in a new issue