mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 23:25:29 +00:00
62f342c2e9
* feat_: Check for mobile data connection if setting is on * fix_: check code control flag inside asyncRequestAllHistoricMessages --------- Co-authored-by: Andrea Maria Piana <andrea.maria.piana@gmail.com> 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
|
|
}
|