build: organize params
This commit is contained in:
parent
5fa1a74e74
commit
0ed035d0ff
@ -1,7 +0,0 @@
|
|||||||
package build
|
|
||||||
|
|
||||||
// Seconds
|
|
||||||
const BlockDelay = 3
|
|
||||||
|
|
||||||
// Seconds
|
|
||||||
const AllowableClockDrift = BlockDelay * 2
|
|
@ -2,31 +2,54 @@ package build
|
|||||||
|
|
||||||
// Core network constants
|
// Core network constants
|
||||||
|
|
||||||
|
// /////
|
||||||
|
// Storage
|
||||||
|
|
||||||
const UnixfsChunkSize uint64 = 1 << 20
|
const UnixfsChunkSize uint64 = 1 << 20
|
||||||
const UnixfsLinksPerLevel = 1024
|
const UnixfsLinksPerLevel = 1024
|
||||||
|
|
||||||
const SectorSize = 16 << 20
|
const SectorSize = 16 << 20
|
||||||
|
|
||||||
|
// /////
|
||||||
|
// Payments
|
||||||
|
|
||||||
// Blocks
|
// Blocks
|
||||||
const PaymentChannelClosingDelay = 6 * 60 * 2 // six hours
|
const PaymentChannelClosingDelay = 6 * 60 * 2 // six hours
|
||||||
|
|
||||||
// Blocks
|
// Blocks
|
||||||
const DealVoucherSkewLimit = 10
|
const DealVoucherSkewLimit = 10
|
||||||
|
|
||||||
|
// /////
|
||||||
|
// Consensus / Network
|
||||||
|
|
||||||
|
// Seconds
|
||||||
|
const BlockDelay = 3
|
||||||
|
|
||||||
|
// Seconds
|
||||||
|
const AllowableClockDrift = BlockDelay * 2
|
||||||
|
|
||||||
// Blocks
|
// Blocks
|
||||||
const ForkLengthThreshold = 20
|
const ForkLengthThreshold = 20
|
||||||
|
|
||||||
|
// /////
|
||||||
|
// Proofs / Mining
|
||||||
|
|
||||||
// Blocks
|
// Blocks
|
||||||
const RandomnessLookback = 20
|
const RandomnessLookback = 20
|
||||||
|
|
||||||
// Blocks
|
// Blocks
|
||||||
const ProvingPeriodDuration = 10
|
const ProvingPeriodDuration = 10
|
||||||
|
|
||||||
|
// Blocks
|
||||||
const PoSTChallangeTime = 5
|
const PoSTChallangeTime = 5
|
||||||
|
|
||||||
const PowerCollateralProportion = 20
|
const PowerCollateralProportion = 20
|
||||||
const PerCapitaCollateralProportion = 5
|
const PerCapitaCollateralProportion = 5
|
||||||
const CollateralPrecision = 100
|
const CollateralPrecision = 100
|
||||||
|
|
||||||
|
// /////
|
||||||
|
// Devnet settings
|
||||||
|
|
||||||
const TotalFilecoin = 2000000000
|
const TotalFilecoin = 2000000000
|
||||||
const FilecoinPrecision = 1000000000000000000
|
const FilecoinPrecision = 1000000000000000000
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user