consensus.go raw

   1  package txscript
   2  
   3  const (
   4  	// LockTimeThreshold is the number below which a lock time is interpreted to be a block number. Since an average of
   5  	// one block is generated per 10 minutes, this allows blocks for about 9,512 years.
   6  	LockTimeThreshold = 5e8 // Tue Nov 5 00:53:20 1985 UTC
   7  )
   8