17 lines
307 B
Go
17 lines
307 B
Go
package build
|
|
|
|
// Core network constants
|
|
|
|
const UnixfsChunkSize uint64 = 1 << 20
|
|
const UnixfsLinksPerLevel = 1024
|
|
|
|
const SectorSize = 1024
|
|
|
|
const PaymentChannelClosingDelay = 6 * 60 * 2 // six hours
|
|
|
|
const DealVoucherSkewLimit = 10
|
|
|
|
const ForkLengthThreshold = 20
|
|
|
|
// TODO: Move other important consts here
|