| 16 | } |
| 17 | |
| 18 | type bpGetBlockListParams struct { |
| 19 | Since int `json:"since"` |
| 20 | Page int `json:"page"` |
| 21 | Size int `json:"size"` |
| 22 | } |
| 23 | |
| 24 | func (params *bpGetBlockListParams) Validate() error { |
| 25 | if params.Size > 1000 { |
nothing calls this directly
no outgoing calls
no test coverage detected