mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
core/txpool: typos
This commit is contained in:
parent
f2cea867a6
commit
cf74e5b900
1 changed files with 2 additions and 2 deletions
|
|
@ -311,8 +311,8 @@ func (p *TxPool) Get(hash common.Hash) *types.Transaction {
|
|||
// retrieve blobs from the pools directly instead of the network.
|
||||
func (p *TxPool) GetBlobs(vhashes []common.Hash) ([]*kzg4844.Blob, []*kzg4844.Proof) {
|
||||
for _, subpool := range p.subpools {
|
||||
// It's a ugly to assume that only one pool will be capable of returning
|
||||
// anthing meaningful for this call, but anythingh else requires merging
|
||||
// It's an ugly to assume that only one pool will be capable of returning
|
||||
// anything meaningful for this call, but anythingh else requires merging
|
||||
// partial responses and that's too annoying to do until we get a second
|
||||
// blobpool (probably never).
|
||||
if blobs, proofs := subpool.GetBlobs(vhashes); blobs != nil {
|
||||
|
|
|
|||
Loading…
Reference in a new issue