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
7ee49c32
Commit
7ee49c32
authored
Jul 24, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added update method and general service timer
* disable catching up if no block received for longer than 10 seconds
parent
702cf5a3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
4 deletions
+25
-4
peer.go
peer.go
+25
-4
No files found.
peer.go
View file @
7ee49c32
...
...
@@ -122,6 +122,7 @@ type Peer struct {
// Last received pong message
lastPong
int64
lastBlockReceived
time
.
Time
host
[]
byte
port
uint16
...
...
@@ -408,10 +409,7 @@ func (p *Peer) HandleInbound() {
for
i
:=
msg
.
Data
.
Len
()
-
1
;
i
>=
0
;
i
--
{
block
=
ethchain
.
NewBlockFromRlpValue
(
msg
.
Data
.
Get
(
i
))
//p.ethereum.StateManager().PrepareDefault(block)
//state := p.ethereum.StateManager().CurrentState()
err
=
p
.
ethereum
.
StateManager
()
.
Process
(
block
,
false
)
if
err
!=
nil
{
if
ethutil
.
Config
.
Debug
{
peerlogger
.
Infof
(
"Block %x failed
\n
"
,
block
.
Hash
())
...
...
@@ -422,6 +420,8 @@ func (p *Peer) HandleInbound() {
}
else
{
lastBlock
=
block
}
p
.
lastBlockReceived
=
time
.
Now
()
}
if
msg
.
Data
.
Len
()
<=
1
{
...
...
@@ -561,6 +561,25 @@ func (p *Peer) HandleInbound() {
p
.
Stop
()
}
// General update method
func
(
self
*
Peer
)
update
()
{
serviceTimer
:=
time
.
NewTicker
(
5
*
time
.
Second
)
out
:
for
{
select
{
case
<-
serviceTimer
.
C
:
if
time
.
Since
(
self
.
lastBlockReceived
)
>
10
*
time
.
Second
{
self
.
catchingUp
=
false
}
case
<-
self
.
quit
:
break
out
}
}
serviceTimer
.
Stop
()
}
func
(
p
*
Peer
)
Start
()
{
peerHost
,
peerPort
,
_
:=
net
.
SplitHostPort
(
p
.
conn
.
LocalAddr
()
.
String
())
servHost
,
servPort
,
_
:=
net
.
SplitHostPort
(
p
.
conn
.
RemoteAddr
()
.
String
())
...
...
@@ -583,6 +602,8 @@ func (p *Peer) Start() {
go
p
.
HandleOutbound
()
// Run the inbound handler in a new goroutine
go
p
.
HandleInbound
()
// Run the general update handler
go
p
.
update
()
// Wait a few seconds for startup and then ask for an initial ping
time
.
Sleep
(
2
*
time
.
Second
)
...
...
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