diff options
author | obscuren <geffobscura@gmail.com> | 2014-09-23 01:34:49 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-09-23 01:34:49 +0800 |
commit | df30588eb61b423a60d805b3d68d5a4e556e2a87 (patch) | |
tree | ac183aa3312a4589cb3e4995cc103cfa58ef95da /ethwire/messaging.go | |
parent | b65f29f8faa20a93bd83c18232326c935cb16981 (diff) | |
parent | 7d08e4f7d14600ee4ed38fc9d435e9c2e0e0fdac (diff) | |
download | dexon-df30588eb61b423a60d805b3d68d5a4e556e2a87.tar dexon-df30588eb61b423a60d805b3d68d5a4e556e2a87.tar.gz dexon-df30588eb61b423a60d805b3d68d5a4e556e2a87.tar.bz2 dexon-df30588eb61b423a60d805b3d68d5a4e556e2a87.tar.lz dexon-df30588eb61b423a60d805b3d68d5a4e556e2a87.tar.xz dexon-df30588eb61b423a60d805b3d68d5a4e556e2a87.tar.zst dexon-df30588eb61b423a60d805b3d68d5a4e556e2a87.zip |
Merge branch 'release/0.6.5' into develop
Diffstat (limited to 'ethwire/messaging.go')
-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 } |