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 {