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
c44f4f32
Commit
c44f4f32
authored
Aug 21, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-enabled catching up flag
parent
eaa2e890
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
peer.go
peer.go
+10
-0
No files found.
peer.go
View file @
c44f4f32
...
...
@@ -435,6 +435,8 @@ func (p *Peer) HandleInbound() {
p
.
QueueMessage
(
ethwire
.
NewMessage
(
ethwire
.
MsgBlockTy
,
blocks
))
case
ethwire
.
MsgBlockHashesTy
:
p
.
catchingUp
=
true
blockPool
:=
p
.
ethereum
.
blockPool
foundCommonHash
:=
false
...
...
@@ -452,6 +454,8 @@ func (p *Peer) HandleInbound() {
blockPool
.
AddHash
(
hash
)
p
.
lastReceivedHash
=
hash
p
.
lastBlockReceived
=
time
.
Now
()
}
if
foundCommonHash
{
...
...
@@ -459,14 +463,20 @@ func (p *Peer) HandleInbound() {
}
else
{
p
.
FetchHashes
()
}
case
ethwire
.
MsgBlockTy
:
p
.
catchingUp
=
true
blockPool
:=
p
.
ethereum
.
blockPool
it
:=
msg
.
Data
.
NewIterator
()
for
it
.
Next
()
{
block
:=
ethchain
.
NewBlockFromRlpValue
(
it
.
Value
())
blockPool
.
SetBlock
(
block
)
p
.
lastBlockReceived
=
time
.
Now
()
}
linked
:=
blockPool
.
CheckLinkAndProcess
(
func
(
block
*
ethchain
.
Block
)
{
...
...
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