4202da62cd
Feat/consensus slashing
34 lines
640 B
Go
34 lines
640 B
Go
package build
|
|
|
|
// Core network constants
|
|
|
|
const UnixfsChunkSize uint64 = 1 << 20
|
|
const UnixfsLinksPerLevel = 1024
|
|
|
|
const SectorSize = 1024
|
|
|
|
// Blocks
|
|
const PaymentChannelClosingDelay = 6 * 60 * 2 // six hours
|
|
|
|
// Blocks
|
|
const DealVoucherSkewLimit = 10
|
|
|
|
// Blocks
|
|
const ForkLengthThreshold = 20
|
|
|
|
// Blocks
|
|
const RandomnessLookback = 20
|
|
|
|
// Blocks
|
|
const ProvingPeriodDuration = 10
|
|
const PoSTChallangeTime = 5
|
|
|
|
const PowerCollateralProportion = 20
|
|
const PerCapitaCollateralProportion = 5
|
|
const CollateralPrecision = 100
|
|
|
|
const TotalFilecoin = 2000000000
|
|
const FilecoinPrecision = 1000000000000000000
|
|
|
|
// TODO: Move other important consts here
|