aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/filter.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-04-13 17:16:51 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-04-13 17:16:51 +0800
commit9a53390f49b9667db162bf2ef487d0af64b3363d (patch)
treeb71d2daee37a56a7872d5d3c1536ed83a39d7bc2 /whisper/filter.go
parent7b501906db5b4bed0cf9972a1b103cc343d7f2d2 (diff)
downloadgo-tangerine-9a53390f49b9667db162bf2ef487d0af64b3363d.tar
go-tangerine-9a53390f49b9667db162bf2ef487d0af64b3363d.tar.gz
go-tangerine-9a53390f49b9667db162bf2ef487d0af64b3363d.tar.bz2
go-tangerine-9a53390f49b9667db162bf2ef487d0af64b3363d.tar.lz
go-tangerine-9a53390f49b9667db162bf2ef487d0af64b3363d.tar.xz
go-tangerine-9a53390f49b9667db162bf2ef487d0af64b3363d.tar.zst
go-tangerine-9a53390f49b9667db162bf2ef487d0af64b3363d.zip
whisper: clean up and integrate topics
Diffstat (limited to 'whisper/filter.go')
-rw-r--r--whisper/filter.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/whisper/filter.go b/whisper/filter.go
index b33f2c1a2..7258de3e7 100644
--- a/whisper/filter.go
+++ b/whisper/filter.go
@@ -5,6 +5,6 @@ import "crypto/ecdsa"
type Filter struct {
To *ecdsa.PublicKey
From *ecdsa.PublicKey
- Topics [][]byte
+ Topics []Topic
Fn func(*Message)
}