1// Copyright (c) 2015-2016 The btcsuite developers
2// Use of this source code is governed by an ISC
3// license that can be found in the LICENSE file.
4
5package txscript
6
7const (
8	// LockTimeThreshold is the number below which a lock time is
9	// interpreted to be a block number.  Since an average of one block
10	// is generated per 10 minutes, this allows blocks for about 9,512
11	// years.
12	LockTimeThreshold = 5e8 // Tue Nov 5 00:53:20 1985 UTC
13)
14