aboutsummaryrefslogtreecommitdiffstats
path: root/core/tx_pool.go
diff options
context:
space:
mode:
authormr_franklin <mr_franklin@126.com>2018-11-21 18:52:02 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-11-21 18:52:02 +0800
commit3fd87f219342ca97a6595263a2aa28bec65fee04 (patch)
treeb356885e5ac3b5b16464a7119daf933edf46e098 /core/tx_pool.go
parentc7e522fd17040485a5c2966c45a5c45c0558945e (diff)
downloadgo-tangerine-3fd87f219342ca97a6595263a2aa28bec65fee04.tar
go-tangerine-3fd87f219342ca97a6595263a2aa28bec65fee04.tar.gz
go-tangerine-3fd87f219342ca97a6595263a2aa28bec65fee04.tar.bz2
go-tangerine-3fd87f219342ca97a6595263a2aa28bec65fee04.tar.lz
go-tangerine-3fd87f219342ca97a6595263a2aa28bec65fee04.tar.xz
go-tangerine-3fd87f219342ca97a6595263a2aa28bec65fee04.tar.zst
go-tangerine-3fd87f219342ca97a6595263a2aa28bec65fee04.zip
core: fix comment typo (#18144)
Diffstat (limited to 'core/tx_pool.go')
-rw-r--r--core/tx_pool.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/tx_pool.go b/core/tx_pool.go
index f6da5da2a..fc35d1f24 100644
--- a/core/tx_pool.go
+++ b/core/tx_pool.go
@@ -825,7 +825,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))