You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// We can skip err. It has already been validated in the tx pool
264
281
from, _:=tx.From()
282
+
283
+
// check if it falls within margin
284
+
iftx.GasPrice().Cmp(minprice) <0 {
285
+
// ignore the transaction and transactor. We ignore the transactor
286
+
// because nonce will fail after ignoring this transaction so there's
287
+
// no point
288
+
ignoredTransactors.Add(from)
289
+
glog.V(logger.Info).Infof("transaction(%x) below gas price (<%d%% ask price). All sequential txs from this address(%x) will fail\n", tx.Hash().Bytes()[:4], pct, from[:4])
290
+
continue
291
+
}
292
+
265
293
// Move on to the next transaction when the transactor is in ignored transactions set
266
294
// This may occur when a transaction hits the gas limit. When a gas limit is hit and
267
295
// the transaction is processed (that could potentially be included in the block) it
0 commit comments