(chainID string, blockID types.BlockID, height int64, commit *types.Commit)
| 48 | } |
| 49 | |
| 50 | func (pc pContext) verifyCommit(chainID string, blockID types.BlockID, height int64, commit *types.Commit) error { |
| 51 | return pc.state.Validators.VerifyCommitLight(chainID, blockID, height, commit) |
| 52 | } |
| 53 | |
| 54 | func (pc *pContext) saveBlock(block *types.Block, blockParts *types.PartSet, seenCommit *types.Commit) { |
| 55 | pc.store.SaveBlock(block, blockParts, seenCommit) |
nothing calls this directly
no test coverage detected