aboutsummaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
authorPeter Todd <pete@petertodd.org>2014-09-29 01:02:59 -0400
committerPeter Todd <pete@petertodd.org>2015-10-08 17:39:17 +0200
commit750d54f9510d784c2a502089754241986fb1338a (patch)
tree4aa0c72c60a81c8a25224f5b3924f05b84364952 /src/script
parent689746841afd0f2076a7d93d30974c2f7d29cd83 (diff)
downloadbitcoin-750d54f9510d784c2a502089754241986fb1338a.tar.xz
Move LOCKTIME_THRESHOLD to src/script/script.h
Will now be needed by CHECKLOCKTIMEVERIFY code. Rebased-From: 48e9c57cf06352f890eac4285ae022d8746cf3fd
Diffstat (limited to 'src/script')
-rw-r--r--src/script/script.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/script/script.h b/src/script/script.h
index e3af4a6fd9..6433d1a766 100644
--- a/src/script/script.h
+++ b/src/script/script.h
@@ -17,6 +17,10 @@
static const unsigned int MAX_SCRIPT_ELEMENT_SIZE = 520; // bytes
+// Threshold for nLockTime: below this value it is interpreted as block number,
+// otherwise as UNIX timestamp.
+static const unsigned int LOCKTIME_THRESHOLD = 500000000; // Tue Nov 5 00:53:20 1985 UTC
+
template <typename T>
std::vector<unsigned char> ToByteVector(const T& in)
{