From 8c4a7fa8d320be02c025d3f163ccf2e5ed0c2c5f Mon Sep 17 00:00:00 2001 From: "John C. Vernaleo" Date: Wed, 13 Jun 2018 03:14:15 -0400 Subject: [PATCH] core: change comment to match code more closely (#16963) --- core/tx_pool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tx_pool.go b/core/tx_pool.go index b55c5e4d53..b0b55fcc25 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -1107,7 +1107,7 @@ func (pool *TxPool) demoteUnexecutables() { log.Trace("Demoting pending transaction", "hash", hash) pool.enqueueTx(hash, tx) } - // If there's a gap in front, warn (should never happen) and postpone all transactions + // If there's a gap in front, alert (should never happen) and postpone all transactions if list.Len() > 0 && list.txs.Get(nonce) == nil { for _, tx := range list.Cap(0) { hash := tx.Hash()