mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-24 08:49:29 +00:00
fix bug in blob fetcher
This commit is contained in:
parent
07d3ae1d80
commit
cc1fde37a4
1 changed files with 2 additions and 2 deletions
|
|
@ -318,7 +318,7 @@ func (f *BlobFetcher) loop() {
|
|||
reschedule[peer] = struct{}{}
|
||||
}
|
||||
delete(f.waitlist, hash)
|
||||
//todo delete(f.waittime, hash)
|
||||
delete(f.waittime, hash)
|
||||
}
|
||||
continue
|
||||
}
|
||||
|
|
@ -419,7 +419,7 @@ func (f *BlobFetcher) loop() {
|
|||
addedCells := make([][]kzg4844.Cell, 0)
|
||||
|
||||
var requestId int
|
||||
request := new(cellRequest)
|
||||
var request *cellRequest
|
||||
for _, hash := range delivery.txs {
|
||||
// Find the request
|
||||
for i, req := range f.requests[delivery.origin] {
|
||||
|
|
|
|||
Loading…
Reference in a new issue