func makeVoteHR(t *testing.T, height, round int, privVal *types.PrivValidator) *types.Vote {
	vote := &types.Vote{
		Height:    height,
		Round:     round,
		Type:      types.VoteTypePrecommit,
		BlockHash: []byte("fakehash"),
	}
	chainID := config.GetString("chain_id")
	err := privVal.SignVote(chainID, vote)
	if err != nil {
		t.Fatalf("Error signing vote: %v", err)
		return nil
	}
	return vote
}