aboutsummaryrefslogtreecommitdiffstats
path: root/miner
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-23 16:53:48 +0800
committerobscuren <geffobscura@gmail.com>2015-04-23 17:50:12 +0800
commit48135657c478ecffead52cdddaf2bbbaa89d388e (patch)
treebd8d80e5408e699183fb7fda8ef52306d09c588d /miner
parentd7bab216811f4444a3183fd3e99061b04b4c7bda (diff)
downloaddexon-48135657c478ecffead52cdddaf2bbbaa89d388e.tar
dexon-48135657c478ecffead52cdddaf2bbbaa89d388e.tar.gz
dexon-48135657c478ecffead52cdddaf2bbbaa89d388e.tar.bz2
dexon-48135657c478ecffead52cdddaf2bbbaa89d388e.tar.lz
dexon-48135657c478ecffead52cdddaf2bbbaa89d388e.tar.xz
dexon-48135657c478ecffead52cdddaf2bbbaa89d388e.tar.zst
dexon-48135657c478ecffead52cdddaf2bbbaa89d388e.zip
miner: show error message for gas limit per account
Diffstat (limited to 'miner')
-rw-r--r--miner/worker.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/miner/worker.go b/miner/worker.go
index 9a655831e..19ede3c93 100644
--- a/miner/worker.go
+++ b/miner/worker.go
@@ -290,8 +290,8 @@ func (self *worker) commitNewWork() {
// ignore the transactor so no nonce errors will be thrown for this account
// next time the worker is run, they'll be picked up again.
ignoredTransactors.Add(from)
- //glog.V(logger.Debug).Infof("Gas limit reached for block. %d TXs included in this block\n", i)
- //break gasLimit
+
+ glog.V(logger.Detail).Infof("Gas limit reached for (%x) in this block. Continue to try smaller txs\n", from[:4])
default:
tcount++
}