mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-10 14:46:16 +00:00
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)
|
|
}
|