26 lines
482 B
Go
26 lines
482 B
Go
// +build !debug
|
|
// +build !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(2 << 30)
|
|
}
|
|
|
|
var SectorSizes = []abi.SectorSize{ // TODO: This isn't really used anywhere
|
|
512 << 20,
|
|
32 << 30,
|
|
64 << 30,
|
|
}
|
|
|
|
// Seconds
|
|
const BlockDelay = 25
|
|
|
|
const PropagationDelay = 6
|