eth: change log.Error() to log.Warn() to match comment

This commit is contained in:
John C. Vernaleo 2018-06-12 11:02:26 -04:00
parent 423d4254f5
commit 09d4cdd9b9
No known key found for this signature in database
GPG key ID: B15210D35378BD54

View file

@ -1111,7 +1111,7 @@ func (pool *TxPool) demoteUnexecutables() {
if list.Len() > 0 && list.txs.Get(nonce) == nil {
for _, tx := range list.Cap(0) {
hash := tx.Hash()
log.Error("Demoting invalidated transaction", "hash", hash)
log.Warn("Demoting invalidated transaction", "hash", hash)
pool.enqueueTx(hash, tx)
}
}