lint: apply deadcode/unused

This commit is contained in:
Zach Ramsay
2017-09-05 16:56:03 -04:00
committed by Ethan Buchman
parent 1721543e5c
commit d95ba866b8
2 changed files with 0 additions and 69 deletions

View File

@ -158,18 +158,6 @@ func updateValidators(validators *types.ValidatorSet, changedValidators []*abci.
return nil
}
// return a bit array of validators that signed the last commit
// NOTE: assumes commits have already been authenticated
func commitBitArrayFromBlock(block *types.Block) *cmn.BitArray {
signed := cmn.NewBitArray(len(block.LastCommit.Precommits))
for i, precommit := range block.LastCommit.Precommits {
if precommit != nil {
signed.SetIndex(i, true) // val_.LastCommitHeight = block.Height - 1
}
}
return signed
}
//-----------------------------------------------------
// Validate block