lotus/build/params.go

17 lines
307 B
Go
Raw Normal View History

2019-08-26 18:23:11 +00:00
package build
// Core network constants
const UnixfsChunkSize uint64 = 1 << 20
2019-08-27 22:10:23 +00:00
const UnixfsLinksPerLevel = 1024
2019-08-29 19:00:12 +00:00
const SectorSize = 1024
2019-08-26 18:23:11 +00:00
2019-09-09 13:55:06 +00:00
const PaymentChannelClosingDelay = 6 * 60 * 2 // six hours
2019-09-09 19:21:37 +00:00
const DealVoucherSkewLimit = 10
2019-09-03 17:45:55 +00:00
const ForkLengthThreshold = 20
2019-08-26 18:23:11 +00:00
// TODO: Move other important consts here