2
0
mirror of https://github.com/status-im/op-geth.git synced 2025-01-26 14:39:44 +00:00

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)
}