From ab5058231970bf12cbd9d916812d124fbf9502f7 Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Sun, 20 Mar 2022 14:12:05 -0400 Subject: [PATCH] Fix missing VerifyVoteExtension request data Signed-off-by: Thane Thomson --- internal/state/execution.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/internal/state/execution.go b/internal/state/execution.go index c27a7082d..7f95a908b 100644 --- a/internal/state/execution.go +++ b/internal/state/execution.go @@ -324,7 +324,12 @@ func (blockExec *BlockExecutor) ExtendVote(ctx context.Context, vote *types.Vote } func (blockExec *BlockExecutor) VerifyVoteExtension(ctx context.Context, vote *types.Vote) error { - req := abci.RequestVerifyVoteExtension{} + req := abci.RequestVerifyVoteExtension{ + Hash: vote.BlockID.Hash, + ValidatorAddress: vote.ValidatorAddress, + Height: vote.Height, + VoteExtension: vote.Extension, + } resp, err := blockExec.appClient.VerifyVoteExtension(ctx, req) if err != nil {