Commit 22e16f15 authored by Maran's avatar Maran

Reduce peer timeout to 10 seconds

parent a90ffe1a
...@@ -124,6 +124,7 @@ type Peer struct { ...@@ -124,6 +124,7 @@ type Peer struct {
port uint16 port uint16
caps Caps caps Caps
// This peer's public key
pubkey []byte pubkey []byte
// Indicated whether the node is catching up or not // Indicated whether the node is catching up or not
...@@ -171,7 +172,7 @@ func NewOutboundPeer(addr string, ethereum *Ethereum, caps Caps) *Peer { ...@@ -171,7 +172,7 @@ func NewOutboundPeer(addr string, ethereum *Ethereum, caps Caps) *Peer {
// Set up the connection in another goroutine so we don't block the main thread // Set up the connection in another goroutine so we don't block the main thread
go func() { go func() {
conn, err := net.DialTimeout("tcp", addr, 30*time.Second) conn, err := net.DialTimeout("tcp", addr, 10*time.Second)
if err != nil { if err != nil {
ethutil.Config.Log.Debugln("Connection to peer failed", err) ethutil.Config.Log.Debugln("Connection to peer failed", err)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment