Skip to content

Commit

Permalink
Use new Sequence::ENABLE_RBF_AND_LOCKTIME
Browse files Browse the repository at this point in the history
We just renamed this and forgot to use the new name. This should have
been caught by CI.
  • Loading branch information
tcharding committed Oct 11, 2024
1 parent fe62d94 commit 5e0a07e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion primitives/src/sequence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ impl<'a> Arbitrary<'a> for Sequence {
0 => Ok(Sequence::MAX),
1 => Ok(Sequence::ZERO),
2 => Ok(Sequence::MIN_NO_RBF),
3 => Ok(Sequence::ENABLE_RBF_NO_LOCKTIME),
3 => Ok(Sequence::ENABLE_LOCKTIME_AND_RBF),
4 => Ok(Sequence::from_consensus(relative::Height::MIN.to_consensus_u32())),
5 => Ok(Sequence::from_consensus(relative::Height::MAX.to_consensus_u32())),
6 => Ok(Sequence::from_consensus(relative::Time::MIN.to_consensus_u32())),
Expand Down

0 comments on commit 5e0a07e

Please sign in to comment.