From 7ea76fcf993f3fecb55233bdcc2409618d9080b9 Mon Sep 17 00:00:00 2001 From: obscuren Date: Fri, 15 May 2015 23:53:41 +0200 Subject: [PATCH] core, cmd/geth, cmd/mist: cleanup. bump version 0.9.21 --- cmd/geth/main.go | 4 +--- cmd/mist/main.go | 2 +- cmd/utils/cmd.go | 2 +- core/block_processor.go | 2 -- 4 files changed, 3 insertions(+), 7 deletions(-) diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 725f04efe..158b08796 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -50,7 +50,7 @@ import _ "net/http/pprof" const ( ClientIdentifier = "Geth" - Version = "0.9.20" + Version = "0.9.21" ) var ( @@ -283,8 +283,6 @@ JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Conso } func main() { - //fmt.Printf("\n 🌞\n\n α΄‘α΄‡ΚŸα΄„α΄α΄α΄‡ ᴛᴏ α΄›Κœα΄‡\n 𝐅 𝐑 𝐎 𝐍 𝐓 𝐈 𝐄 𝐑\n\n🌾 🌡🌾🌾 🐎 🌾 🌡 🌾\n\n") - fmt.Println("\n Welcome to the\n FRONTIER\n") runtime.GOMAXPROCS(runtime.NumCPU()) defer logger.Flush() if err := app.Run(os.Args); err != nil { diff --git a/cmd/mist/main.go b/cmd/mist/main.go index 4b55b3026..8365fcec1 100644 --- a/cmd/mist/main.go +++ b/cmd/mist/main.go @@ -37,7 +37,7 @@ import ( const ( ClientIdentifier = "Mist" - Version = "0.9.19" + Version = "0.9.21" ) var ( diff --git a/cmd/utils/cmd.go b/cmd/utils/cmd.go index b21099162..fb55a64af 100644 --- a/cmd/utils/cmd.go +++ b/cmd/utils/cmd.go @@ -104,7 +104,7 @@ func Fatalf(format string, args ...interface{}) { } func StartEthereum(ethereum *eth.Ethereum) { - glog.V(logger.Info).Infoln("Starting ", ethereum.Name()) + glog.V(logger.Info).Infoln("Starting", ethereum.Name()) if err := ethereum.Start(); err != nil { Fatalf("Error starting Ethereum: %v", err) } diff --git a/core/block_processor.go b/core/block_processor.go index 5199e4b4d..9a213686f 100644 --- a/core/block_processor.go +++ b/core/block_processor.go @@ -24,8 +24,6 @@ const ( BlockChainVersion = 2 ) -var statelogger = logger.NewLogger("BLOCK") - type BlockProcessor struct { db common.Database extraDb common.Database