mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-12 11:06:40 +00:00
space in miner logging message
This commit is contained in:
parent
a243e3b858
commit
782f780476
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@ func (self *Miner) mineNewBlock() {
|
||||||
|
|
||||||
self.block.State().Update()
|
self.block.State().Update()
|
||||||
|
|
||||||
logger.Infoln("Mining on block. Includes", len(self.txs), "transactions")
|
logger.Infof("Mining on block. Includes %v transactions", len(self.txs))
|
||||||
|
|
||||||
// Find a valid nonce
|
// Find a valid nonce
|
||||||
self.block.Nonce = self.pow.Search(self.block, self.powQuitChan)
|
self.block.Nonce = self.pow.Search(self.block, self.powQuitChan)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue