13 lines
250 B
Go
13 lines
250 B
Go
|
package testing
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/filecoin-project/lotus/build"
|
||
|
"github.com/filecoin-project/lotus/chain/beacon"
|
||
|
)
|
||
|
|
||
|
func RandomBeacon() (beacon.RandomBeacon, error) {
|
||
|
return beacon.NewMockBeacon(build.BlockDelay * time.Second), nil
|
||
|
}
|