status-go/protocol/requests/set_syncing_on_mobile_network.go
Icaro Motta 62f342c2e9
feat_: Check for mobile data connection if setting is on (#5511) (#5613)
* 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>
2024-07-29 14:22:15 -03:00

10 lines
161 B
Go

package requests
type SetSyncingOnMobileNetwork struct {
Enabled bool `json:"enabled"`
}
func (r *SetSyncingOnMobileNetwork) Validate() error {
return nil
}