8 // SizedDigest is a minimal Keep block locator: hash+size
9 type SizedDigest string
11 // Size returns the size of the data block, in bytes.
12 func (sd SizedDigest) Size() int64 {
13 n, _ := strconv.ParseInt(strings.Split(string(sd), "+")[1], 10, 64)