aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-04-06 03:51:01 +0800
committerFelix Lange <fjl@users.noreply.github.com>2017-04-06 03:51:01 +0800
commit24b9860c1bc214d2db943bc69117818311406bdb (patch)
tree967fc20530c0c00fc1670afcc50ea17260b95260 /cmd
parentcc303017c3f145441e583b5bb10ee3070b44cc50 (diff)
downloadgo-tangerine-24b9860c1bc214d2db943bc69117818311406bdb.tar
go-tangerine-24b9860c1bc214d2db943bc69117818311406bdb.tar.gz
go-tangerine-24b9860c1bc214d2db943bc69117818311406bdb.tar.bz2
go-tangerine-24b9860c1bc214d2db943bc69117818311406bdb.tar.lz
go-tangerine-24b9860c1bc214d2db943bc69117818311406bdb.tar.xz
go-tangerine-24b9860c1bc214d2db943bc69117818311406bdb.tar.zst
go-tangerine-24b9860c1bc214d2db943bc69117818311406bdb.zip
cmd/geth, node: surface geth architecture into version (#13866)
Diffstat (limited to 'cmd')
-rw-r--r--cmd/geth/consolecmd_test.go6
-rw-r--r--cmd/geth/misccmd.go3
2 files changed, 6 insertions, 3 deletions
diff --git a/cmd/geth/consolecmd_test.go b/cmd/geth/consolecmd_test.go
index 820e9d082..fee8024a9 100644
--- a/cmd/geth/consolecmd_test.go
+++ b/cmd/geth/consolecmd_test.go
@@ -45,6 +45,7 @@ func TestConsoleWelcome(t *testing.T) {
// Gather all the infos the welcome message needs to contain
geth.setTemplateFunc("goos", func() string { return runtime.GOOS })
+ geth.setTemplateFunc("goarch", func() string { return runtime.GOARCH })
geth.setTemplateFunc("gover", runtime.Version)
geth.setTemplateFunc("gethver", func() string { return params.Version })
geth.setTemplateFunc("niltime", func() string { return time.Unix(0, 0).Format(time.RFC1123) })
@@ -58,7 +59,7 @@ func TestConsoleWelcome(t *testing.T) {
geth.expect(`
Welcome to the Geth JavaScript console!
-instance: Geth/v{{gethver}}/{{goos}}/{{gover}}
+instance: Geth/v{{gethver}}/{{goos}}-{{goarch}}/{{gover}}
coinbase: {{.Etherbase}}
at block: 0 ({{niltime}})
datadir: {{.Datadir}}
@@ -131,6 +132,7 @@ func testAttachWelcome(t *testing.T, geth *testgeth, endpoint string) {
// Gather all the infos the welcome message needs to contain
attach.setTemplateFunc("goos", func() string { return runtime.GOOS })
+ attach.setTemplateFunc("goarch", func() string { return runtime.GOARCH })
attach.setTemplateFunc("gover", runtime.Version)
attach.setTemplateFunc("gethver", func() string { return params.Version })
attach.setTemplateFunc("etherbase", func() string { return geth.Etherbase })
@@ -152,7 +154,7 @@ func testAttachWelcome(t *testing.T, geth *testgeth, endpoint string) {
attach.expect(`
Welcome to the Geth JavaScript console!
-instance: Geth/v{{gethver}}/{{goos}}/{{gover}}
+instance: Geth/v{{gethver}}/{{goos}}-{{goarch}}/{{gover}}
coinbase: {{etherbase}}
at block: 0 ({{niltime}}){{if ipc}}
datadir: {{datadir}}{{end}}
diff --git a/cmd/geth/misccmd.go b/cmd/geth/misccmd.go
index 079f49310..cb7dc1673 100644
--- a/cmd/geth/misccmd.go
+++ b/cmd/geth/misccmd.go
@@ -101,10 +101,11 @@ func version(ctx *cli.Context) error {
if gitCommit != "" {
fmt.Println("Git Commit:", gitCommit)
}
+ fmt.Println("Architecture:", runtime.GOARCH)
fmt.Println("Protocol Versions:", eth.ProtocolVersions)
fmt.Println("Network Id:", ctx.GlobalInt(utils.NetworkIdFlag.Name))
fmt.Println("Go Version:", runtime.Version())
- fmt.Println("OS:", runtime.GOOS)
+ fmt.Println("Operating System:", runtime.GOOS)
fmt.Printf("GOPATH=%s\n", os.Getenv("GOPATH"))
fmt.Printf("GOROOT=%s\n", runtime.GOROOT())
return nil