status-go/protocol/requests/set_max_log_backups.go
Andrey Bocharnikov fe25d97052 fix(config)_: add API calls to set new waku node and max backups
* add waku nodeaddr and max log backups validation
* Allow to set new waku node
* Allow to set custom max backups
* add tests
2024-06-04 22:52:18 +07:00

6 lines
121 B
Go

package requests
type SetMaxLogBackups struct {
MaxLogBackups uint `json:"maxLogBackups" validate:"omitempty,gte=0"`
}