2019-11-23 19:13:07 +00:00
|
|
|
// +build !debug
|
2020-04-17 15:58:20 +00:00
|
|
|
// +build !2k
|
2019-11-23 19:13:07 +00:00
|
|
|
|
|
|
|
package build
|
|
|
|
|
2020-02-10 18:21:10 +00:00
|
|
|
import (
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
|
|
|
)
|
|
|
|
|
|
|
|
var SectorSizes = []abi.SectorSize{
|
2020-03-06 00:41:06 +00:00
|
|
|
512 << 20,
|
2019-12-05 15:27:28 +00:00
|
|
|
32 << 30,
|
2019-12-04 16:53:32 +00:00
|
|
|
}
|
|
|
|
|
2019-11-23 19:13:07 +00:00
|
|
|
// Seconds
|
2020-03-08 08:07:58 +00:00
|
|
|
const BlockDelay = 25
|
2019-11-23 19:13:07 +00:00
|
|
|
|
2019-12-09 23:02:35 +00:00
|
|
|
const PropagationDelay = 6
|