status-go/protocol/requests/toggle_peer_syncing.go
Alexander 26bc564b38
Peer syncing toggle (#4758)
* Peer syncing toggle

* bindata.go
2024-03-05 11:44:09 +01:00

10 lines
159 B
Go

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