aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/topic.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-04-17 19:11:46 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-04-17 19:11:46 +0800
commit4afc22ba6e79fe951256251444b4a5b8d38b50fb (patch)
treedff06f8e9569293df1a20d6b38cc76c42e31a236 /whisper/topic.go
parentbd14bd6c5b8fcfb2430720da58de152dbbcb84ab (diff)
downloaddexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.tar.gz
dexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.tar.zst
dexon-4afc22ba6e79fe951256251444b4a5b8d38b50fb.zip
whisper: cleanup lefover scoping
Diffstat (limited to 'whisper/topic.go')
-rw-r--r--whisper/topic.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/whisper/topic.go b/whisper/topic.go
index 7c26cfba9..a965c7cc2 100644
--- a/whisper/topic.go
+++ b/whisper/topic.go
@@ -52,7 +52,7 @@ func (self *Topic) String() string {
type topicSet map[string]struct{}
// NewTopicSet creates a topic hash set from a slice of topics.
-func NewTopicSet(topics []Topic) topicSet {
+func newTopicSet(topics []Topic) topicSet {
set := make(map[string]struct{})
for _, topic := range topics {
set[topic.String()] = struct{}{}