pub struct Sequence(pub u32);Expand description
Bitcoin transaction input sequence number.
The sequence field is used for:
- Indicating whether absolute lock-time (specified in
lock_timefield ofTransaction) is enabled. - Indicating and encoding BIP-68 relative lock-times.
- Indicating whether a transaction opts-in to BIP-125 replace-by-fee.
Note that transactions spending an output with OP_CHECKLOCKTIMEVERIFYMUST NOT use
Sequence::MAX for the corresponding input. BIP-65
Tuple Fields§
§0: u32Implementations§
Source§impl Sequence
impl Sequence
Sourcepub const MAX: Self
pub const MAX: Self
The maximum allowable sequence number.
This sequence number disables lock-time and replace-by-fee.
Sourcepub const ZERO: Self
pub const ZERO: Self
Zero value sequence.
This sequence number enables replace-by-fee and lock-time.
Sourcepub const ENABLE_LOCKTIME_NO_RBF: Self = Sequence::MIN_NO_RBF
pub const ENABLE_LOCKTIME_NO_RBF: Self = Sequence::MIN_NO_RBF
The sequence number that enables absolute lock-time but disables replace-by-fee and relative lock-time.
Sourcepub const ENABLE_RBF_NO_LOCKTIME: Self
pub const ENABLE_RBF_NO_LOCKTIME: Self
The sequence number that enables replace-by-fee and absolute lock-time but disables relative lock-time.
Sourcepub fn is_final(&self) -> bool
pub fn is_final(&self) -> bool
Returns true if the sequence number indicates that the transaction is finalised.
The sequence number being equal to 0xffffffff on all txin sequences indicates that the transaction is finalised.
Sourcepub fn is_rbf(&self) -> bool
pub fn is_rbf(&self) -> bool
Returns true if the transaction opted-in to BIP125 replace-by-fee.
Replace by fee is signaled by the sequence being less than 0xfffffffe which is checked by this method.
Sourcepub fn is_relative_lock_time(&self) -> bool
pub fn is_relative_lock_time(&self) -> bool
Returns true if the sequence has a relative lock-time.
Sourcepub fn is_height_locked(&self) -> bool
pub fn is_height_locked(&self) -> bool
Returns true if the sequence number encodes a block based relative lock-time.
Sourcepub fn is_time_locked(&self) -> bool
pub fn is_time_locked(&self) -> bool
Returns true if the sequence number encodes a time interval based relative lock-time.
Sourcepub fn from_height(height: u16) -> Self
pub fn from_height(height: u16) -> Self
Create a relative lock-time using block height.
Sourcepub fn from_512_second_intervals(intervals: u16) -> Self
pub fn from_512_second_intervals(intervals: u16) -> Self
Create a relative lock-time using time intervals where each interval is equivalent to 512 seconds.
Encoding finer granularity of time for relative lock-times is not supported in Bitcoin
Sourcepub fn from_seconds_floor(seconds: u32) -> Result<Self, RelativeLockTimeError>
pub fn from_seconds_floor(seconds: u32) -> Result<Self, RelativeLockTimeError>
Create a relative lock-time from seconds, converting the seconds into 512 second interval with floor division.
Will return an error if the input cannot be encoded in 16 bits.
Sourcepub fn from_seconds_ceil(seconds: u32) -> Result<Self, RelativeLockTimeError>
pub fn from_seconds_ceil(seconds: u32) -> Result<Self, RelativeLockTimeError>
Create a relative lock-time from seconds, converting the seconds into 512 second interval with ceiling division.
Will return an error if the input cannot be encoded in 16 bits.
Sourcepub fn enables_absolute_lock_time(&self) -> bool
pub fn enables_absolute_lock_time(&self) -> bool
Returns true if the sequence number enables absolute lock-time (Transaction::lock_time).
Sourcepub fn from_consensus(n: u32) -> Self
pub fn from_consensus(n: u32) -> Self
Create a sequence from a u32 value.
Sourcepub fn to_consensus_u32(self) -> u32
pub fn to_consensus_u32(self) -> u32
Returns the inner 32bit integer value of Sequence.