Remove Sergio from TODO

Signed-off-by: Thane Thomson <connect@thanethomson.com>
This commit is contained in:
Thane Thomson
2022-05-09 19:15:21 -04:00
parent db91461030
commit 2cbaa35c89
+2 -2
View File
@@ -1098,8 +1098,8 @@ func (ec *ExtendedCommit) BitArray() *bits.BitArray {
if ec.bitArray == nil {
ec.bitArray = bits.NewBitArray(len(ec.ExtendedSignatures))
for i, extCommitSig := range ec.ExtendedSignatures {
// TODO(sergio): need to check the BlockID otherwise we could be counting conflicts,
// not just the one with +2/3 !
// TODO: need to check the BlockID otherwise we could be counting conflicts,
// not just the one with +2/3 !
ec.bitArray.SetIndex(i, extCommitSig.BlockIDFlag != BlockIDFlagAbsent)
}
}