(voteCh <-chan tmpubsub.Message, height int64, round int32)
| 649 | } |
| 650 | |
| 651 | func ensurePrecommit(voteCh <-chan tmpubsub.Message, height int64, round int32) { |
| 652 | ensureVote(voteCh, height, round, tmproto.PrecommitType) |
| 653 | } |
| 654 | |
| 655 | func ensurePrevote(voteCh <-chan tmpubsub.Message, height int64, round int32) { |
| 656 | ensureVote(voteCh, height, round, tmproto.PrevoteType) |
no test coverage detected