Split the TxIn impl block in two

In preparation for moving the `TxIn` over to `primitives` split the impl
block into two parts, one to stay one to go.

Internal change only.
This commit is contained in:
Tobin C. Harding 2024-10-18 14:11:39 +11:00
parent 265589d93d
commit b7e6c698f8
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 2 additions and 0 deletions

View File

@ -127,7 +127,9 @@ impl TxIn {
sequence: Sequence::MAX,
witness: Witness::new(),
};
}
impl TxIn {
/// Returns true if this input enables the [`absolute::LockTime`] (aka `nLockTime`) of its
/// [`Transaction`].
///