Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
ab13cd99
Commit
ab13cd99
authored
Sep 21, 2018
by
Felföldi Zsolt
Committed by
Péter Szilágyi
Sep 21, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
les: fix invalid delivery handling in retriever (#17727)
parent
32c05e82
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
retrieve.go
les/retrieve.go
+8
-1
No files found.
les/retrieve.go
View file @
ab13cd99
...
...
@@ -212,11 +212,18 @@ func (r *sentReq) stateRequesting() reqStateFn {
// no need to go to stopped state because waiting() already returned false
return
nil
}
case
rpSoftTimeout
,
rpDeliveredInvalid
:
case
rpSoftTimeout
:
// last request timed out, try asking a new peer
go
r
.
tryRequest
()
r
.
lastReqQueued
=
true
return
r
.
stateRequesting
case
rpDeliveredInvalid
:
// if it was the last sent request (set to nil by update) then start a new one
if
!
r
.
lastReqQueued
&&
r
.
lastReqSentTo
==
nil
{
go
r
.
tryRequest
()
r
.
lastReqQueued
=
true
}
return
r
.
stateRequesting
case
rpDeliveredValid
:
r
.
stop
(
nil
)
return
r
.
stateStopped
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment