mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
f9ec588c4e
refactor: associate chats to pubsub topics and populate these depending if the chat belongs to a community or not refactor: add pubsub topic to mailserver batches chore: ensure default relay messages continue working as they should refactor: mailserver functions should be aware of pubsub topics fix: use []byte for communityIDs
12 lines
273 B
Go
12 lines
273 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
|
|
PubsubTopic string
|
|
Topics [][]byte
|
|
}
|