2019-11-23 19:13:07 +00:00
|
|
|
// +build debug
|
|
|
|
|
|
|
|
package build
|
|
|
|
|
2019-11-24 19:16:18 +00:00
|
|
|
import "os"
|
|
|
|
|
2019-11-23 19:13:07 +00:00
|
|
|
// Seconds
|
|
|
|
const BlockDelay = 2
|
|
|
|
|
|
|
|
// Blocks
|
|
|
|
const ProvingPeriodDuration uint64 = 40
|
2019-11-24 19:16:18 +00:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
os.Setenv("TRUST_PARAMS", "1")
|
|
|
|
}
|