Commit 41a89e18 authored by zelig's avatar zelig

version output

- make version output more verbose
- include NetworkId
- go version and os not displayed like env vars (confusing)
parent 51eed796
...@@ -228,11 +228,13 @@ func hashish(x string) bool { ...@@ -228,11 +228,13 @@ func hashish(x string) bool {
} }
func version(c *cli.Context) { func version(c *cli.Context) {
fmt.Printf(`%v %v fmt.Printf(`%v
PV=%d Version: %v
GOOS=%s Protocol Version: %d
GO=%s Network Id: %d
GO: %s
OS: %s
GOPATH=%s GOPATH=%s
GOROOT=%s GOROOT=%s
`, ClientIdentifier, Version, eth.ProtocolVersion, runtime.GOOS, runtime.Version(), os.Getenv("GOPATH"), runtime.GOROOT()) `, ClientIdentifier, Version, eth.ProtocolVersion, eth.NetworkId, runtime.Version(), runtime.GOOS, os.Getenv("GOPATH"), runtime.GOROOT())
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment