2014-12-12 21:23:42 +00:00
|
|
|
package whisper
|
|
|
|
|
|
|
|
import "crypto/ecdsa"
|
|
|
|
|
|
|
|
type Filter struct {
|
2015-02-05 23:00:59 +00:00
|
|
|
To *ecdsa.PublicKey
|
2014-12-12 21:23:42 +00:00
|
|
|
From *ecdsa.PublicKey
|
2015-04-13 09:16:51 +00:00
|
|
|
Topics []Topic
|
2014-12-12 21:23:42 +00:00
|
|
|
Fn func(*Message)
|
|
|
|
}
|