aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/filter.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-13 05:23:42 +0800
committerobscuren <geffobscura@gmail.com>2014-12-13 05:23:42 +0800
commita17a1f9208f858601f6660dbd7f1b77dd9a3f3d9 (patch)
tree6f6f61cfd2dd41cc20d1bcae9604c1f09e07e42d /whisper/filter.go
parented1538248f2e7a44680d22a052a234a31b736624 (diff)
downloaddexon-a17a1f9208f858601f6660dbd7f1b77dd9a3f3d9.tar
dexon-a17a1f9208f858601f6660dbd7f1b77dd9a3f3d9.tar.gz
dexon-a17a1f9208f858601f6660dbd7f1b77dd9a3f3d9.tar.bz2
dexon-a17a1f9208f858601f6660dbd7f1b77dd9a3f3d9.tar.lz
dexon-a17a1f9208f858601f6660dbd7f1b77dd9a3f3d9.tar.xz
dexon-a17a1f9208f858601f6660dbd7f1b77dd9a3f3d9.tar.zst
dexon-a17a1f9208f858601f6660dbd7f1b77dd9a3f3d9.zip
Implemented watching using filter package
* Added filters / watches * Removed event dep
Diffstat (limited to 'whisper/filter.go')
-rw-r--r--whisper/filter.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/whisper/filter.go b/whisper/filter.go
new file mode 100644
index 000000000..4315aa556
--- /dev/null
+++ b/whisper/filter.go
@@ -0,0 +1,10 @@
+package whisper
+
+import "crypto/ecdsa"
+
+type Filter struct {
+ To *ecdsa.PrivateKey
+ From *ecdsa.PublicKey
+ Topics [][]byte
+ Fn func(*Message)
+}