mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 07:06:42 +00:00
core/txpool: make Has docs more clear about the result
This commit is contained in:
parent
65752ba6f1
commit
70e48358d1
1 changed files with 2 additions and 2 deletions
|
|
@ -67,8 +67,8 @@ type Reserver interface {
|
|||
// Returns an error if the address is not reserved or is reserved by another pool.
|
||||
Release(addr common.Address) error
|
||||
|
||||
// Has returns a flag indicating if the address has been reserved by another
|
||||
// pool or not.
|
||||
// Has returns a flag indicating if the address has been reserved by a pool
|
||||
// other than one with the current Reserver handle.
|
||||
Has(address common.Address) bool
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue