Update 0_beacon-chain.md
This commit is contained in:
parent
867dea3473
commit
1d76ad65ec
|
@ -1100,8 +1100,7 @@ def verify_bitfield(bitfield: bytes, committee_size: int) -> bool:
|
|||
return False
|
||||
|
||||
# Check if `bitfield` has padding zeros
|
||||
if committee_size % 8 != 0:
|
||||
for i in range(committee_size, committee_size - committee_size % 8 + 8):
|
||||
for i in range(committee_size, len(bitfield) * 8):
|
||||
if get_bitfield_bit(bitfield, i) == 0b1:
|
||||
return False
|
||||
|
||||
|
|
Loading…
Reference in New Issue