Skip to content

Commit a666465

Browse files
committed
core: fix a typo (ethereum#17733)
1 parent ec50ca3 commit a666465

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/tx_pool.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ func (pool *TxPool) Content() (map[common.Address]types.Transactions, map[common
549549
return pending, queued
550550
}
551551

552-
// Pending retrieves all currently processable transactions, groupped by origin
552+
// Pending retrieves all currently processable transactions, grouped by origin
553553
// account and sorted by nonce. The returned transaction set is a copy and can be
554554
// freely modified by calling code.
555555
func (pool *TxPool) Pending() (map[common.Address]types.Transactions, error) {
@@ -571,7 +571,7 @@ func (pool *TxPool) Locals() []common.Address {
571571
return pool.locals.flatten()
572572
}
573573

574-
// local retrieves all currently known local transactions, groupped by origin
574+
// local retrieves all currently known local transactions, grouped by origin
575575
// account and sorted by nonce. The returned transaction set is a copy and can be
576576
// freely modified by calling code.
577577
func (pool *TxPool) local() map[common.Address]types.Transactions {

0 commit comments

Comments
 (0)