quorum/whisper/filter.go

11 lines
154 B
Go
Raw Normal View History

package whisper
import "crypto/ecdsa"
type Filter struct {
To *ecdsa.PrivateKey
From *ecdsa.PublicKey
Topics [][]byte
Fn func(*Message)
}