Remove TODO (#557)

This commit is contained in:
Nishant Das 2018-09-22 22:14:25 +08:00 committed by Raul Jordan
parent 5c0ee65619
commit 4973144b76

View File

@ -131,7 +131,6 @@ func (c *Collation) CalculateChunkRoot() {
func (c *Collation) CalculatePOC(salt []byte) common.Hash {
body := make([]byte, 0, len(c.body)*(1+len(salt)))
// TODO: Use 32 byte chunks instead of a single byte
for _, chunk := range c.body {
body = append(append(body, salt...), chunk)
}