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