Increased from 200 nano to milliseconds

pull/150/head
obscuren 11 years ago
parent 1bc815e0b1
commit 2ae3bda029
  1. 3
      ethwire/messaging.go

@ -109,9 +109,10 @@ func ReadMessages(conn net.Conn) (msgs []*Msg, err error) {
} }
} }
fmt.Println(n, len(buff))
if n == 0 && len(buff) == 0 { if n == 0 && len(buff) == 0 {
// If there's nothing on the wire wait for a bit // If there's nothing on the wire wait for a bit
time.Sleep(200) time.Sleep(200 * time.Millisecond)
continue continue
} }

Loading…
Cancel
Save