16 lines
		
	
	
		
			312 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			312 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package testing
 | |
| 
 | |
| import (
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/filecoin-project/lotus/build"
 | |
| 	"github.com/filecoin-project/lotus/chain/beacon"
 | |
| )
 | |
| 
 | |
| func RandomBeacon() (beacon.Schedule, error) {
 | |
| 	return beacon.Schedule{
 | |
| 		{Start: 0,
 | |
| 			Beacon: beacon.NewMockBeacon(time.Duration(build.BlockDelaySecs) * time.Second),
 | |
| 		}}, nil
 | |
| }
 |