abci: move round back from votes to commit

This commit is contained in:
Ethan Buchman
2018-08-16 10:33:53 -04:00
parent b189ab676f
commit c919643c3e
4 changed files with 254 additions and 254 deletions

View File

@ -347,7 +347,7 @@ func (app *testApp) Info(req abci.RequestInfo) (resInfo abci.ResponseInfo) {
}
func (app *testApp) BeginBlock(req abci.RequestBeginBlock) abci.ResponseBeginBlock {
app.CommitVotes = req.LastCommitInfo.CommitVotes
app.CommitVotes = req.LastCommitInfo.Votes
app.ByzantineValidators = req.ByzantineValidators
return abci.ResponseBeginBlock{}
}