30 lines
597 B
Go
30 lines
597 B
Go
|
// +build debug 2k
|
||
|
|
||
|
package build
|
||
|
|
||
|
import (
|
||
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
||
|
"github.com/filecoin-project/specs-actors/actors/abi/big"
|
||
|
"github.com/filecoin-project/specs-actors/actors/builtin/power"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
power.ConsensusMinerMinPower = big.NewInt(2048)
|
||
|
}
|
||
|
|
||
|
var SectorSizes = []abi.SectorSize{2048}
|
||
|
|
||
|
// Seconds
|
||
|
const BlockDelay = 6
|
||
|
|
||
|
const PropagationDelay = 3
|
||
|
|
||
|
// SlashablePowerDelay is the number of epochs after ElectionPeriodStart, after
|
||
|
// which the miner is slashed
|
||
|
//
|
||
|
// Epochs
|
||
|
const SlashablePowerDelay = 20
|
||
|
|
||
|
// Epochs
|
||
|
const InteractivePoRepConfidence = 6
|