mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
les/flowcontrol: fix linter
This commit is contained in:
parent
b45ce52b6d
commit
e1b6188f27
1 changed files with 1 additions and 1 deletions
|
|
@ -402,7 +402,7 @@ func (node *ServerNode) ResumeFreeze(bv uint64) {
|
|||
node.lock.Lock()
|
||||
defer node.lock.Unlock()
|
||||
|
||||
for reqID, _ := range node.pending {
|
||||
for reqID := range node.pending {
|
||||
delete(node.pending, reqID)
|
||||
}
|
||||
now := node.clock.Now()
|
||||
|
|
|
|||
Loading…
Reference in a new issue