mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-14 03:56:36 +00:00
eth/downloader: fix merge compile error
This commit is contained in:
parent
6d497f61c6
commit
1d7bf3d39f
1 changed files with 1 additions and 1 deletions
|
|
@ -551,7 +551,7 @@ func (d *Downloader) banBlocks(peerId string, head common.Hash) error {
|
||||||
if peer == nil {
|
if peer == nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
request := d.queue.Reserve(peer, MaxBlockFetch)
|
request := d.queue.Reserve(peer)
|
||||||
if request == nil {
|
if request == nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue