remove outdated TODOs

This commit is contained in:
Lucas Clemente 2016-05-17 19:22:18 +02:00
parent e8b2d9748a
commit 2864c97a70
3 changed files with 0 additions and 3 deletions

View file

@ -164,7 +164,6 @@ func WriteUint16(b *bytes.Buffer, i uint16) {
// RandomBit returns a cryptographically secure random bit (encoded as true / false)
func RandomBit() (bool, error) {
// TODO: it's probably more efficient to read a bigger slice of random numbers at once and to cache them somewhere
b := make([]byte, 1)
_, err := rand.Read(b)
if err != nil {