2019-11-23 19:13:07 +00:00
|
|
|
// +build !debug
|
|
|
|
|
|
|
|
package build
|
|
|
|
|
|
|
|
// Seconds
|
|
|
|
const BlockDelay = 12
|
|
|
|
|
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
|
|
|
|
const FallbackPoStDelay = 1000
|
|
|
|
|
|
|
|
// SlashablePowerDelay is the number of epochs after ElectionPeriodStart, after
|
|
|
|
// which the miner is slashed
|
|
|
|
//
|
|
|
|
// Epochs
|
|
|
|
const SlashablePowerDelay = 2000
|
|
|
|
|
|
|
|
// Epochs
|
|
|
|
const InteractivePoRepDelay = 10
|