forked from cerc-io/plugeth
11 lines
152 B
Go
11 lines
152 B
Go
package whisper
|
|
|
|
import "crypto/ecdsa"
|
|
|
|
type Filter struct {
|
|
To *ecdsa.PublicKey
|
|
From *ecdsa.PublicKey
|
|
Topics []Topic
|
|
Fn func(*Message)
|
|
}
|