| 52 | } |
| 53 | |
| 54 | type bpGetTransactionListOfBlockParams struct { |
| 55 | BlockHeight int `json:"height"` |
| 56 | Page int `json:"page"` |
| 57 | Size int `json:"size"` |
| 58 | } |
| 59 | |
| 60 | func (params *bpGetTransactionListOfBlockParams) Validate() error { |
| 61 | if params.BlockHeight < 1 { |
nothing calls this directly
no outgoing calls
no test coverage detected