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