14 lines
228 B
Go
Raw Normal View History

2019-07-18 00:25:42 +02:00
package whisper
import (
"github.com/status-im/status-go/eth-node/types"
2019-07-18 00:25:42 +02:00
)
type RequestOptions struct {
Topics []types.TopicType
2019-07-18 00:25:42 +02:00
Password string
Limit int
From int64 // in seconds
To int64 // in seconds
}