aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/peer.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-04-16 16:20:01 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-04-16 16:20:01 +0800
commitee6531c5ff712307325e8866b73397179f4bb8cd (patch)
tree5a3d44c18fbf4eb1955d866ba4742aa8cc535d58 /whisper/peer.go
parent6ceb253f743ec0d2bdd9a676c7f365de2201470c (diff)
downloadgo-tangerine-ee6531c5ff712307325e8866b73397179f4bb8cd.tar
go-tangerine-ee6531c5ff712307325e8866b73397179f4bb8cd.tar.gz
go-tangerine-ee6531c5ff712307325e8866b73397179f4bb8cd.tar.bz2
go-tangerine-ee6531c5ff712307325e8866b73397179f4bb8cd.tar.lz
go-tangerine-ee6531c5ff712307325e8866b73397179f4bb8cd.tar.xz
go-tangerine-ee6531c5ff712307325e8866b73397179f4bb8cd.tar.zst
go-tangerine-ee6531c5ff712307325e8866b73397179f4bb8cd.zip
whisper: remove dead code, rename a few constants
Diffstat (limited to 'whisper/peer.go')
-rw-r--r--whisper/peer.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/whisper/peer.go b/whisper/peer.go
index 8bf848855..e4301f37c 100644
--- a/whisper/peer.go
+++ b/whisper/peer.go
@@ -88,8 +88,8 @@ func (self *peer) handshake() error {
// and expiration.
func (self *peer) update() {
// Start the tickers for the updates
- expire := time.NewTicker(expirationTicks)
- transmit := time.NewTicker(transmissionTicks)
+ expire := time.NewTicker(expirationCycle)
+ transmit := time.NewTicker(transmissionCycle)
// Loop and transmit until termination is requested
for {