diff --git a/CHANGELOG_PENDING.md b/CHANGELOG_PENDING.md index bf2cc5b3..f097d33c 100644 --- a/CHANGELOG_PENDING.md +++ b/CHANGELOG_PENDING.md @@ -21,6 +21,7 @@ program](https://hackerone.com/tendermint). ### IMPROVEMENTS: - [tools] [\#4023](https://github.com/tendermint/tendermint/issues/4023) Improved `tm-monitor` formatting of start time and avg tx throughput (@erikgrinaker) +- [abci] Add full Vote to VoteInfo in BeginBlock (@folex from fluence labs) ### BUG FIXES: diff --git a/abci/types/types.proto b/abci/types/types.proto index f731e5ad..43547c0d 100644 --- a/abci/types/types.proto +++ b/abci/types/types.proto @@ -314,7 +314,7 @@ message VoteInfo { Vote full_vote = 3; } -// Vote from LastCommit +// Validator's vote for a block message Vote { int32 type = 1; // TODO: maybe remove height cause it could be derived from BeginBlock?