mirror of
https://github.com/status-im/status-go.git
synced 2025-01-18 10:42:07 +00:00
3cc4767638
* feat_: Check for mobile data connection if setting is on * fix_: check code control flag inside asyncRequestAllHistoricMessages --------- Co-authored-by: Igor Sirotin <sirotin@status.im>
10 lines
161 B
Go
10 lines
161 B
Go
package requests
|
|
|
|
type SetSyncingOnMobileNetwork struct {
|
|
Enabled bool `json:"enabled"`
|
|
}
|
|
|
|
func (r *SetSyncingOnMobileNetwork) Validate() error {
|
|
return nil
|
|
}
|