mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-01 00:53:47 +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)
|
|
}
|