Difference between revisions of "NLockTime"

From Bitcoin Wiki
Jump to: navigation, search
m
(Add link to timelock page)
Line 3: Line 3:
 
'''nLockTime''' is a parameter of a transaction, that, if any input indicates so (by having nSequence not equal to UINT_MAX), mandates a minimal time (specified in either unix time or block height), before which the transaction cannot be accepted into a block.  If all inputs in a transaction have nSequence equal to UINT_MAX, then nLockTime is ignored.
 
'''nLockTime''' is a parameter of a transaction, that, if any input indicates so (by having nSequence not equal to UINT_MAX), mandates a minimal time (specified in either unix time or block height), before which the transaction cannot be accepted into a block.  If all inputs in a transaction have nSequence equal to UINT_MAX, then nLockTime is ignored.
  
See lock_time in [[Protocol_specification#tx|the protocol specification]]
+
==See Also==
 +
* lock_time in [[Protocol_specification#tx|the protocol specification]]
 +
* [[Timelock]]
  
 
[[Category:Technical]]
 
[[Category:Technical]]
 
{{lowercase}}
 
{{lowercase}}

Revision as of 16:50, 17 February 2019

Hashbtc.jpgThis page is a stub. Help by expanding it.

nLockTime is a parameter of a transaction, that, if any input indicates so (by having nSequence not equal to UINT_MAX), mandates a minimal time (specified in either unix time or block height), before which the transaction cannot be accepted into a block. If all inputs in a transaction have nSequence equal to UINT_MAX, then nLockTime is ignored.

See Also