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
c37238ca
Commit
c37238ca
authored
Sep 20, 2018
by
Felföldi Zsolt
Committed by
Péter Szilágyi
Sep 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
les: fix retriever logic (#17705)
parent
da29332c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
retrieve.go
les/retrieve.go
+6
-2
No files found.
les/retrieve.go
View file @
c37238ca
...
@@ -212,7 +212,7 @@ func (r *sentReq) stateRequesting() reqStateFn {
...
@@ -212,7 +212,7 @@ func (r *sentReq) stateRequesting() reqStateFn {
// no need to go to stopped state because waiting() already returned false
// no need to go to stopped state because waiting() already returned false
return
nil
return
nil
}
}
case
rpSoftTimeout
:
case
rpSoftTimeout
,
rpDeliveredInvalid
:
// last request timed out, try asking a new peer
// last request timed out, try asking a new peer
go
r
.
tryRequest
()
go
r
.
tryRequest
()
r
.
lastReqQueued
=
true
r
.
lastReqQueued
=
true
...
@@ -242,7 +242,11 @@ func (r *sentReq) stateNoMorePeers() reqStateFn {
...
@@ -242,7 +242,11 @@ func (r *sentReq) stateNoMorePeers() reqStateFn {
r
.
stop
(
nil
)
r
.
stop
(
nil
)
return
r
.
stateStopped
return
r
.
stateStopped
}
}
return
r
.
stateNoMorePeers
if
r
.
waiting
()
{
return
r
.
stateNoMorePeers
}
r
.
stop
(
light
.
ErrNoPeers
)
return
nil
case
<-
r
.
stopCh
:
case
<-
r
.
stopCh
:
return
r
.
stateStopped
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