LightBlock is a SignedHeader and a ValidatorSet. It is the basis of the light client
| 11 | // LightBlock is a SignedHeader and a ValidatorSet. |
| 12 | // It is the basis of the light client |
| 13 | type LightBlock struct { |
| 14 | *SignedHeader `json:"signed_header"` |
| 15 | ValidatorSet *ValidatorSet `json:"validator_set"` |
| 16 | } |
| 17 | |
| 18 | // ValidateBasic checks that the data is correct and consistent |
| 19 | // |
nothing calls this directly
no outgoing calls
no test coverage detected