2020-04-15 14:13:20 +00:00
|
|
|
package testing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/build"
|
|
|
|
"github.com/filecoin-project/lotus/chain/beacon"
|
|
|
|
)
|
|
|
|
|
|
|
|
func RandomBeacon() (beacon.RandomBeacon, error) {
|
2020-06-30 13:18:01 +00:00
|
|
|
return beacon.NewMockBeacon(time.Duration(build.BlockDelay) * time.Second), nil
|
2020-04-15 14:13:20 +00:00
|
|
|
}
|