From aac3df49014ddfa6f965c21d029a68a2f3a10a3a Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Sat, 19 Mar 2022 09:47:07 -0400 Subject: [PATCH] Inject vote extensions into proposal Signed-off-by: Thane Thomson --- internal/state/execution.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/internal/state/execution.go b/internal/state/execution.go index c367e9c1f..fd7ae3ba9 100644 --- a/internal/state/execution.go +++ b/internal/state/execution.go @@ -441,10 +441,7 @@ func extendedCommitInfo(c abci.CommitInfo, votes []*types.Vote) abci.ExtendedCom vs[i] = abci.ExtendedVoteInfo{ Validator: c.Votes[i].Validator, SignedLastBlock: c.Votes[i].SignedLastBlock, - /* - TODO: Include vote extensions information when implementing vote extensions. - VoteExtension: []byte{}, - */ + VoteExtension: votes[i].Extension, } } return abci.ExtendedCommitInfo{