diff options
Diffstat (limited to 'whisper/whisperv2/peer.go')
-rw-r--r-- | whisper/whisperv2/peer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/whisper/whisperv2/peer.go b/whisper/whisperv2/peer.go index 404ebd513..f09ce3523 100644 --- a/whisper/whisperv2/peer.go +++ b/whisper/whisperv2/peer.go @@ -149,7 +149,7 @@ func (self *peer) expire() { return true }) // Dump all known but unavailable - for hash, _ := range unmark { + for hash := range unmark { self.known.Remove(hash) } } |