mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
eth, les: unlock downloader peerSet if there's an error (#25546)
Unlock peerSet if there's an error in the downloader
This commit is contained in:
parent
32e8490615
commit
656dc8cc00
2 changed files with 2 additions and 0 deletions
|
|
@ -237,6 +237,7 @@ func (ps *peerSet) Register(p *peerConnection) error {
|
|||
}
|
||||
p.rates = msgrate.NewTracker(ps.rates.MeanCapacities(), ps.rates.MedianRoundTrip())
|
||||
if err := ps.rates.Track(p.id, p.rates); err != nil {
|
||||
ps.lock.Unlock()
|
||||
return err
|
||||
}
|
||||
ps.peers[p.id] = p
|
||||
|
|
|
|||
|
|
@ -350,6 +350,7 @@ func (ps *peerSet) Register(p *peerConnection) error {
|
|||
}
|
||||
p.rates = msgrate.NewTracker(ps.rates.MeanCapacities(), ps.rates.MedianRoundTrip())
|
||||
if err := ps.rates.Track(p.id, p.rates); err != nil {
|
||||
ps.lock.Unlock()
|
||||
return err
|
||||
}
|
||||
ps.peers[p.id] = p
|
||||
|
|
|
|||
Loading…
Reference in a new issue