From 2cbaa35c89b251938c4826a4308cc15072f69ca7 Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Mon, 9 May 2022 07:00:40 -0400 Subject: [PATCH] Remove Sergio from TODO Signed-off-by: Thane Thomson --- types/block.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/block.go b/types/block.go index 4a87db59a..f93a9f80c 100644 --- a/types/block.go +++ b/types/block.go @@ -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) } }