aboutsummaryrefslogtreecommitdiffstats
path: root/peer.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-02-12 01:46:28 +0800
committerobscuren <geffobscura@gmail.com>2014-02-12 01:46:28 +0800
commit02acef23d595dc2bc95295bab63658addf664aaf (patch)
treeb91e7a59b788520a995cc37cbc1a8a1621265081 /peer.go
parent5a83114efd96bb8debeb3a3fccc3e054069e5400 (diff)
downloadgo-tangerine-02acef23d595dc2bc95295bab63658addf664aaf.tar.gz
go-tangerine-02acef23d595dc2bc95295bab63658addf664aaf.tar.zst
go-tangerine-02acef23d595dc2bc95295bab63658addf664aaf.zip
Interop!
Diffstat (limited to 'peer.go')
-rw-r--r--peer.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/peer.go b/peer.go
index 6ec3c7ee7..5bfec1758 100644
--- a/peer.go
+++ b/peer.go
@@ -204,6 +204,7 @@ func (p *Peer) HandleOutbound() {
// The ping timer. Makes sure that every 2 minutes a ping is send to the peer
pingTimer := time.NewTicker(2 * time.Minute)
serviceTimer := time.NewTicker(5 * time.Minute)
+
out:
for {
select {
@@ -442,7 +443,7 @@ func (p *Peer) pushHandshake() error {
clientId := fmt.Sprintf("/Ethereum(G) v%s/%s", ethutil.Config.Ver, runtime.GOOS)
msg := ethwire.NewMessage(ethwire.MsgHandshakeTy, []interface{}{
- uint32(3), uint32(0), clientId, byte(p.caps), p.port, pubkey,
+ uint32(4), uint32(0), clientId, byte(p.caps), p.port, pubkey,
})
p.QueueMessage(msg)
@@ -469,8 +470,8 @@ func (p *Peer) pushPeers() {
func (p *Peer) handleHandshake(msg *ethwire.Msg) {
c := msg.Data
- if c.Get(0).AsUint() != 3 {
- log.Println("Invalid peer version. Require protocol v3")
+ if c.Get(0).AsUint() != 4 {
+ log.Println("Invalid peer version. Require protocol v4")
p.Stop()
return
}