diff options
Diffstat (limited to 'ethwire')
-rw-r--r-- | ethwire/messaging.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethwire/messaging.go b/ethwire/messaging.go index b1cefc0ae..2ef53c003 100644 --- a/ethwire/messaging.go +++ b/ethwire/messaging.go @@ -111,7 +111,7 @@ func ReadMessages(conn net.Conn) (msgs []*Msg, err error) { if n == 0 && len(buff) == 0 { // If there's nothing on the wire wait for a bit - time.Sleep(200) + time.Sleep(200 * time.Millisecond) continue } |