Skip to content

Commit 81080bf

Browse files
wuxiangzhou2010karalabe
authored andcommitted
core: fix a typo (#17733)
1 parent 1a16cc7 commit 81080bf

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
@@ -525,7 +525,7 @@ func (pool *TxPool) Content() (map[common.Address]types.Transactions, map[common
525525
return pending, queued
526526
}
527527

528-
// Pending retrieves all currently processable transactions, groupped by origin
528+
// Pending retrieves all currently processable transactions, grouped by origin
529529
// account and sorted by nonce. The returned transaction set is a copy and can be
530530
// freely modified by calling code.
531531
func (pool *TxPool) Pending() (map[common.Address]types.Transactions, error) {
@@ -547,7 +547,7 @@ func (pool *TxPool) Locals() []common.Address {
547547
return pool.locals.flatten()
548548
}
549549

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

0 commit comments

Comments
 (0)