16 lines
177 B
Go
16 lines
177 B
Go
// +build debug
|
|
|
|
package build
|
|
|
|
import "os"
|
|
|
|
// Seconds
|
|
const BlockDelay = 2
|
|
|
|
// Blocks
|
|
const ProvingPeriodDuration uint64 = 40
|
|
|
|
func init() {
|
|
os.Setenv("TRUST_PARAMS", "1")
|
|
}
|