diff options
author | Felix Lange <fjl@twurst.com> | 2015-04-18 04:17:50 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-04-18 04:17:50 +0800 |
commit | 7dc6c338736b05fa239316f5764fb3ffec6ec6c2 (patch) | |
tree | a4504670c1d7b9ccf87c96c018ebbea6bd64cdd2 | |
parent | 4020258801febb9cb3fc221245812fae07d1f2a5 (diff) | |
parent | 576393550d95a8f22dee93b5aa6bfdc5546463be (diff) | |
download | dexon-7dc6c338736b05fa239316f5764fb3ffec6ec6c2.tar dexon-7dc6c338736b05fa239316f5764fb3ffec6ec6c2.tar.gz dexon-7dc6c338736b05fa239316f5764fb3ffec6ec6c2.tar.bz2 dexon-7dc6c338736b05fa239316f5764fb3ffec6ec6c2.tar.lz dexon-7dc6c338736b05fa239316f5764fb3ffec6ec6c2.tar.xz dexon-7dc6c338736b05fa239316f5764fb3ffec6ec6c2.tar.zst dexon-7dc6c338736b05fa239316f5764fb3ffec6ec6c2.zip |
Merge pull request #736 from frozeman/develop
add extra space to miner icon
-rw-r--r-- | miner/worker.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miner/worker.go b/miner/worker.go index 9fb248efa..daabd3db5 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -201,7 +201,7 @@ func (self *worker) wait() { } self.mux.Post(core.NewMinedBlockEvent{block}) - glog.V(logger.Info).Infof("🔨 Mined block #%v", block.Number()) + glog.V(logger.Info).Infof("🔨 Mined block #%v", block.Number()) jsonlogger.LogJson(&logger.EthMinerNewBlock{ BlockHash: block.Hash().Hex(), |