aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--miner/worker.go15
1 files changed, 7 insertions, 8 deletions
diff --git a/miner/worker.go b/miner/worker.go
index b74b67552..141294385 100644
--- a/miner/worker.go
+++ b/miner/worker.go
@@ -172,7 +172,7 @@ out:
case <-self.quit:
break out
case <-timer.C:
- if glog.V(logger.Debug) {
+ if glog.V(logger.Detail) && atomic.LoadInt64(&self.mining) == 1 {
glog.Infoln("Hash rate:", self.HashRate(), "Khash")
}
@@ -264,8 +264,8 @@ func (self *worker) commitNewWork() {
remove = set.New()
tcount = 0
)
-gasLimit:
- for i, tx := range transactions {
+ //gasLimit:
+ for _, tx := range transactions {
self.current.state.StartRecord(tx.Hash(), common.Hash{}, 0)
err := self.commitTransaction(tx)
@@ -276,14 +276,13 @@ gasLimit:
self.chain.TxState().RemoveNonce(from, tx.Nonce())
remove.Add(tx.Hash())
- if glog.V(logger.Debug) {
+ if glog.V(logger.Detail) {
glog.Infof("TX (%x) failed, will be removed: %v\n", tx.Hash().Bytes()[:4], err)
- glog.Infoln(tx)
+ //glog.Infoln(tx)
}
case state.IsGasLimitErr(err):
- glog.V(logger.Debug).Infof("Gas limit reached for block. %d TXs included in this block\n", i)
- // Break on gas limit
- break gasLimit
+ //glog.V(logger.Debug).Infof("Gas limit reached for block. %d TXs included in this block\n", i)
+ //break gasLimit
default:
tcount++
}
mmit/security/tinc?id=f78c90c9bfd447f580023ab7672016c26719eca8'>- remove nojail keyword from rc.d scriptdinoex2017-08-071-1/+0 | | | | Submitted by: Tobias Kilb * - update tinc to 1.0.31dinoex2017-01-222-4/+4 | * - update to 1.0.29dinoex2016-10-11