From 6b87c07876f01f1321c9beb4d120794819076e3c Mon Sep 17 00:00:00 2001 From: Daniel Liu Date: Thu, 9 May 2024 12:37:49 +0800 Subject: [PATCH] core: fix comment typo (#18144) --- 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 a851ff276e..563dcf5d57 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -963,7 +963,7 @@ func (pool *TxPool) addTxs(txs []*types.Transaction, local bool) []error { // addTxsLocked attempts to queue a batch of transactions if they are valid, // whilst assuming the transaction pool lock is already held. func (pool *TxPool) addTxsLocked(txs []*types.Transaction, local bool) []error { - // Add the batch of transaction, tracking the accepted ones + // Add the batch of transactions, tracking the accepted ones dirty := make(map[common.Address]struct{}) errs := make([]error, len(txs))