11 lines
187 B
Go
11 lines
187 B
Go
package build
|
|
|
|
// Core network constants
|
|
|
|
const UnixfsChunkSize uint64 = 1 << 20
|
|
const UnixfsLinksPerLevel = 1024
|
|
|
|
const SectorSize = 268435456
|
|
|
|
// TODO: Move other important consts here
|