status-go/protocol/requests/clear_history.go

20 lines
280 B
Go
Raw Normal View History

2021-03-25 15:15:22 +00:00
package requests
import (
"errors"
)
var ErrClearHistoryInvalidID = errors.New("clear-history: invalid id")
type ClearHistory struct {
2021-05-14 10:55:42 +00:00
ID string `json:"id"`
2021-03-25 15:15:22 +00:00
}
2021-05-14 10:55:42 +00:00
func (c *ClearHistory) Validate() error {
if len(c.ID) == 0 {
2021-03-25 15:15:22 +00:00
return ErrClearHistoryInvalidID
}
return nil
}