mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-27 16:17:22 +00:00
10 lines
153 B
Go
10 lines
153 B
Go
package whisper
|
|
|
|
import "crypto/ecdsa"
|
|
|
|
type Filter struct {
|
|
To *ecdsa.PublicKey
|
|
From *ecdsa.PublicKey
|
|
Topics [][]byte
|
|
Fn func(*Message)
|
|
}
|