In `leaderrotation/reputation.go:59-62` we do this: ```go numVotes := 0 voters.ForEach(func(hotstuff.ID) { numVotes++ }) ``` It should do this: ```go numVotes := voters.Len() ```