diff --git a/reedsolomon.go b/reedsolomon.go index 0beb8f2..71f1401 100644 --- a/reedsolomon.go +++ b/reedsolomon.go @@ -21,9 +21,6 @@ type ReedSolomon struct { parity [][]byte } -type Shard []byte -type Shards []Shard - func New(dataShardCount, parityShardCount int) (*ReedSolomon, error) { r := ReedSolomon{ DataShardCount: dataShardCount,