mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 02:40:45 +00:00
core: fix a typo (#17733)
This commit is contained in:
parent
ec50ca36d9
commit
a6664651c7
1 changed files with 2 additions and 2 deletions
|
|
@ -549,7 +549,7 @@ func (pool *TxPool) Content() (map[common.Address]types.Transactions, map[common
|
||||||
return pending, queued
|
return pending, queued
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pending retrieves all currently processable transactions, groupped by origin
|
// Pending retrieves all currently processable transactions, grouped by origin
|
||||||
// account and sorted by nonce. The returned transaction set is a copy and can be
|
// account and sorted by nonce. The returned transaction set is a copy and can be
|
||||||
// freely modified by calling code.
|
// freely modified by calling code.
|
||||||
func (pool *TxPool) Pending() (map[common.Address]types.Transactions, error) {
|
func (pool *TxPool) Pending() (map[common.Address]types.Transactions, error) {
|
||||||
|
|
@ -571,7 +571,7 @@ func (pool *TxPool) Locals() []common.Address {
|
||||||
return pool.locals.flatten()
|
return pool.locals.flatten()
|
||||||
}
|
}
|
||||||
|
|
||||||
// local retrieves all currently known local transactions, groupped by origin
|
// local retrieves all currently known local transactions, grouped by origin
|
||||||
// account and sorted by nonce. The returned transaction set is a copy and can be
|
// account and sorted by nonce. The returned transaction set is a copy and can be
|
||||||
// freely modified by calling code.
|
// freely modified by calling code.
|
||||||
func (pool *TxPool) local() map[common.Address]types.Transactions {
|
func (pool *TxPool) local() map[common.Address]types.Transactions {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue