diff options
| author | Peter Todd <[email protected]> | 2014-09-29 01:02:59 -0400 |
|---|---|---|
| committer | Peter Todd <[email protected]> | 2015-05-09 04:33:49 -0400 |
| commit | 48e9c57cf06352f890eac4285ae022d8746cf3fd (patch) | |
| tree | 100a64bf4a6b04dbeaae983c320a00c65a07441f /src/consensus | |
| parent | Make CScriptNum() take nMaxNumSize as an argument (diff) | |
| download | discoin-48e9c57cf06352f890eac4285ae022d8746cf3fd.tar.xz discoin-48e9c57cf06352f890eac4285ae022d8746cf3fd.zip | |
Move LOCKTIME_THRESHOLD to src/script/script.h
Will now be needed by CHECKLOCKTIMEVERIFY code.
Diffstat (limited to 'src/consensus')
| -rw-r--r-- | src/consensus/consensus.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/consensus/consensus.h b/src/consensus/consensus.h index 9c5b7d4ff..f937844e9 100644 --- a/src/consensus/consensus.h +++ b/src/consensus/consensus.h @@ -12,7 +12,5 @@ static const unsigned int MAX_BLOCK_SIZE = 1000000; static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50; /** Coinbase transaction outputs can only be spent after this number of new blocks (network rule) */ static const int COINBASE_MATURITY = 100; -/** 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 #endif // BITCOIN_CONSENSUS_CONSENSUS_H |