aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/topic.go
diff options
context:
space:
mode:
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{}{}