From 06ebf2ba89d4957d2c04c1de8b9a8a58eb819c82 Mon Sep 17 00:00:00 2001 From: mattdf Date: Thu, 26 May 2016 06:08:04 +0100 Subject: [PATCH] Print version on normal geth start --- cmd/geth/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 68aa7d45f3..096911caef 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -299,6 +299,7 @@ func makeDefaultExtra() []byte { // It creates a default node based on the command line arguments and runs it in // blocking mode, waiting for it to be shut down. func geth(ctx *cli.Context) { + fmt.Printf("instance: Geth/%s/%s/%s\n", verString, runtime.Version(), runtime.GOOS) node := utils.MakeSystemNode(clientIdentifier, verString, relConfig, makeDefaultExtra(), ctx) startNode(ctx, node) node.Wait()