Skip to content
This repository has been archived by the owner on Aug 13, 2019. It is now read-only.

Commit

Permalink
cmd/geth rename client (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
soc1c authored and dziabko committed Jun 20, 2019
1 parent a6f4874 commit 7e4db6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/geth/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ func gpubench(ctx *cli.Context) error {
}

func version(ctx *cli.Context) error {
fmt.Println("Geth")
fmt.Println("Geth Classic")
fmt.Println("Version:", Version)
fmt.Println("Protocol Versions:", eth.ProtocolVersions)
fmt.Println("Network Id:", ctx.GlobalInt(aliasableName(NetworkIdFlag.Name, ctx)))
Expand Down
2 changes: 1 addition & 1 deletion cmd/geth/flag.go
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ func MakePasswordList(ctx *cli.Context) []string {

// makeName makes the node name, which can be (in part) customized by the NodeNameFlag
func makeNodeName(version string, ctx *cli.Context) string {
name := fmt.Sprintf("Geth/%s/%s/%s", version, runtime.GOOS, runtime.Version())
name := fmt.Sprintf("Getc/%s/%s/%s", version, runtime.GOOS, runtime.Version())
if identity := ctx.GlobalString(aliasableName(NodeNameFlag.Name, ctx)); len(identity) > 0 {
name += "/" + identity
}
Expand Down

0 comments on commit 7e4db6a

Please sign in to comment.