package commands import ( "fmt" "github.com/spf13/cobra" "git.cw.tr/mukan-network/mukan-consensus/p2p" ) // ShowNodeIDCmd dumps node's ID to the standard output. var ShowNodeIDCmd = &cobra.Command{ Use: "show-node-id", Aliases: []string{"show_node_id"}, Short: "Show this node's ID", RunE: showNodeID, } func showNodeID(*cobra.Command, []string) error { nodeKey, err := p2p.LoadNodeKey(config.NodeKeyFile()) if err != nil { return err } fmt.Println(nodeKey.ID()) return nil }