2019-11-23 19:13:07 +00:00
|
|
|
// +build !debug
|
|
|
|
|
|
|
|
package build
|
|
|
|
|
2019-12-04 16:53:32 +00:00
|
|
|
var SectorSizes = []uint64{
|
|
|
|
16 << 20,
|
|
|
|
256 << 20,
|
|
|
|
1 << 30,
|
|
|
|
}
|
|
|
|
|
2019-11-23 19:13:07 +00:00
|
|
|
// Seconds
|
2019-12-03 00:44:52 +00:00
|
|
|
const BlockDelay = 30
|
2019-11-23 19:13:07 +00:00
|
|
|
|
2019-12-03 04:34:41 +00:00
|
|
|
const PropagationDelay = 5
|
|
|
|
|
2019-11-29 20:18:34 +00:00
|
|
|
// FallbackPoStDelay is the number of epochs the miner needs to wait after
|
|
|
|
// ElectionPeriodStart before starting fallback post computation
|
|
|
|
//
|
|
|
|
// Epochs
|
2019-12-03 00:44:52 +00:00
|
|
|
const FallbackPoStDelay = 30
|
2019-11-29 20:18:34 +00:00
|
|
|
|
|
|
|
// SlashablePowerDelay is the number of epochs after ElectionPeriodStart, after
|
|
|
|
// which the miner is slashed
|
|
|
|
//
|
|
|
|
// Epochs
|
2019-12-03 00:44:52 +00:00
|
|
|
const SlashablePowerDelay = 200
|
2019-11-29 20:18:34 +00:00
|
|
|
|
|
|
|
// Epochs
|
2019-12-03 00:44:52 +00:00
|
|
|
const InteractivePoRepDelay = 8
|