diff options
Diffstat (limited to 'p2p/nat/natpmp.go')
-rw-r--r-- | p2p/nat/natpmp.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/nat/natpmp.go b/p2p/nat/natpmp.go index c2f940891..577a424fb 100644 --- a/p2p/nat/natpmp.go +++ b/p2p/nat/natpmp.go @@ -82,7 +82,7 @@ func discoverPMP() Interface { // any responses after a very short timeout. timeout := time.NewTimer(1 * time.Second) defer timeout.Stop() - for _ = range gws { + for range gws { select { case c := <-found: if c != nil { |