Browse Source

whisper/whisperv6: fix peer time.Ticker leak (#20520)

wangxiang 5 years ago
parent
commit
a013f02df2
1 changed files with 2 additions and 0 deletions
  1. 2 0
      whisper/whisperv6/peer.go

+ 2 - 0
whisper/whisperv6/peer.go

@@ -146,7 +146,9 @@ func (peer *Peer) handshake() error {
 func (peer *Peer) update() {
 	// Start the tickers for the updates
 	expire := time.NewTicker(expirationCycle)
+	defer expire.Stop()
 	transmit := time.NewTicker(transmissionCycle)
+	defer transmit.Stop()
 
 	// Loop and transmit until termination is requested
 	for {