bitcoin::blockdata::locktime::relative

Enum LockTime

Source
pub enum LockTime {
    Blocks(Height),
    Time(Time),
}
Expand description

A relative lock time value, representing either a block height or time (512 second intervals).

Used for sequence numbers (nSequence in Bitcoin Core and crate::TxIn::sequence in this library) and also for the argument to opcode ’OP_CHECKSEQUENCEVERIFY`.

§Note on ordering

Locktimes may be height- or time-based, and these metrics are incommensurate; there is no total ordering on locktimes. We therefore have implemented PartialOrd but not Ord. We also implement ordered::ArbitraryOrd if the “ordered” feature is enabled.

§Relevant BIPs

Variants§

§

Blocks(Height)

A block height lock time value.

§

Time(Time)

A 512 second time interval value.

Implementations§

Source§

impl LockTime

Source

pub const ZERO: LockTime = _

A relative locktime of 0 is always valid, and is assumed valid for inputs that are not yet confirmed.

Source

pub const SIZE: usize = 4usize

The number of bytes that the locktime contributes to the size of a transaction.

Source

pub fn from_consensus(n: u32) -> Result<Self, DisabledLockTimeError>

Constructs a LockTime from an nSequence value or the argument to OP_CHECKSEQUENCEVERIFY.

This method will not round-trip with Self::to_consensus_u32, because relative locktimes only use some bits of the underlying u32 value and discard the rest. If you want to preserve the full value, you should use the Sequence type instead.

§Examples

// `from_consensus` roundtrips with `to_consensus_u32` for small values.
let n_lock_time: u32 = 7000;
let lock_time = LockTime::from_consensus(n_lock_time).unwrap();
assert_eq!(lock_time.to_consensus_u32(), n_lock_time);
Source

pub fn to_consensus_u32(&self) -> u32

Returns the u32 value used to encode this locktime in an nSequence field or argument to OP_CHECKSEQUENCEVERIFY.

§Warning

Locktimes are not ordered by the natural ordering on u32. If you want to compare locktimes, use Self::is_implied_by or similar methods.

Source

pub fn from_sequence(n: Sequence) -> Result<Self, DisabledLockTimeError>

Constructs a LockTime from the sequence number of a Bitcoin input.

This method will not round-trip with Self::to_sequence. See the docs for Self::from_consensus for more information.

Source

pub fn to_sequence(&self) -> Sequence

Encodes the locktime as a sequence number.

Source

pub const fn from_height(n: u16) -> Self

Constructs a LockTime from n, expecting n to be a 16-bit count of blocks.

Source

pub const fn from_512_second_intervals(intervals: u16) -> Self

Constructs a LockTime from n, expecting n to be a count of 512-second intervals.

This function is a little awkward to use, and users may wish to instead use Self::from_seconds_floor or Self::from_seconds_ceil.

Source

pub const fn from_seconds_floor(seconds: u32) -> Result<Self, TimeOverflowError>

Create a LockTime from seconds, converting the seconds into 512 second interval with truncating division.

§Errors

Will return an error if the input cannot be encoded in 16 bits.

Source

pub const fn from_seconds_ceil(seconds: u32) -> Result<Self, TimeOverflowError>

Create a LockTime from seconds, converting the seconds into 512 second interval with ceiling division.

§Errors

Will return an error if the input cannot be encoded in 16 bits.

Source

pub const fn is_same_unit(&self, other: LockTime) -> bool

Returns true if both lock times use the same unit i.e., both height based or both time based.

Source

pub const fn is_block_height(&self) -> bool

Returns true if this lock time value is in units of block height.

Source

pub const fn is_block_time(&self) -> bool

Returns true if this lock time value is in units of time.

Source

pub fn is_satisfied_by(&self, h: Height, t: Time) -> bool

Returns true if this relative::LockTime is satisfied by either height or time.

§Examples


// Users that have chain data can get the current height and time to check against a lock.
let height_and_time = (current_time(), current_height());  // tuple order does not matter.
assert!(lock.is_satisfied_by(current_height(), current_time()));
Source

pub fn is_implied_by(&self, other: LockTime) -> bool

Returns true if satisfaction of other lock time implies satisfaction of this relative::LockTime.

A lock time can only be satisfied by n blocks being mined or n seconds passing. If you have two lock times (same unit) then the larger lock time being satisfied implies (in a mathematical sense) the smaller one being satisfied.

This function is useful when checking sequence values against a lock, first one checks the sequence represents a relative lock time by converting to LockTime then use this function to see if satisfaction of the newly created lock time would imply satisfaction of self.

Can also be used to remove the smaller value of two OP_CHECKSEQUENCEVERIFY operations within one branch of the script.

§Examples


let satisfied = match test_sequence.to_relative_lock_time() {
    None => false, // Handle non-lock-time case.
    Some(test_lock) => lock.is_implied_by(test_lock),
};
assert!(satisfied);
Source

pub fn is_implied_by_sequence(&self, other: Sequence) -> bool

Returns true if satisfaction of the sequence number implies satisfaction of this lock time.

When deciding whether an instance of <n> CHECKSEQUENCEVERIFY will pass, this method can be used by parsing n as a LockTime and calling this method with the sequence number of the input which spends the script.

Source

pub fn is_satisfied_by_height( &self, height: Height, ) -> Result<bool, IncompatibleHeightError>

Returns true if this relative::LockTime is satisfied by Height.

§Errors

Returns an error if this lock is not lock-by-height.

§Examples

let height: u16 = 100;
let lock = Sequence::from_height(height).to_relative_lock_time().expect("valid height");
assert!(lock.is_satisfied_by_height(Height::from(height+1)).expect("a height"));
Source

pub fn is_satisfied_by_time( &self, time: Time, ) -> Result<bool, IncompatibleTimeError>

Returns true if this relative::LockTime is satisfied by Time.

§Errors

Returns an error if this lock is not lock-by-time.

§Examples

let intervals: u16 = 70; // approx 10 hours;
let lock = Sequence::from_512_second_intervals(intervals).to_relative_lock_time().expect("valid time");
assert!(lock.is_satisfied_by_time(Time::from_512_second_intervals(intervals + 10)).expect("a time"));

Trait Implementations§

Source§

impl ArbitraryOrd for LockTime

Available on crate feature ordered only.
Source§

fn arbitrary_cmp(&self, other: &Self) -> Ordering

Implements a meaningless, arbitrary ordering.
Source§

impl Clone for LockTime

Source§

fn clone(&self) -> LockTime

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for LockTime

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for LockTime

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for LockTime

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<Height> for LockTime

Source§

fn from(h: Height) -> Self

Converts to this type from the input type.
Source§

impl From<LockTime> for Sequence

Source§

fn from(lt: LockTime) -> Sequence

Converts to this type from the input type.
Source§

impl From<Time> for LockTime

Source§

fn from(t: Time) -> Self

Converts to this type from the input type.
Source§

impl Hash for LockTime

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for LockTime

Source§

fn eq(&self, other: &LockTime) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for LockTime

Source§

fn partial_cmp(&self, other: &LockTime) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for LockTime

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl TryFrom<Sequence> for LockTime

Source§

type Error = DisabledLockTimeError

The type returned in the event of a conversion error.
Source§

fn try_from(seq: Sequence) -> Result<LockTime, DisabledLockTimeError>

Performs the conversion.
Source§

impl Copy for LockTime

Source§

impl Eq for LockTime

Source§

impl StructuralPartialEq for LockTime

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,