mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
44aa313981
This change makes shhext and protocol submodule work with Waku and Whisper.
11 lines
252 B
Go
11 lines
252 B
Go
package types
|
|
|
|
// SubscriptionOptions represents the parameters passed to Subscribe()
|
|
// to customize the subscription behavior.
|
|
type SubscriptionOptions struct {
|
|
PrivateKeyID string
|
|
SymKeyID string
|
|
PoW float64
|
|
Topics [][]byte
|
|
}
|