status-go/protocol/requests/toggle_peer_syncing.go

10 lines
159 B
Go

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