From b7e6c698f88391d302a9e8673fe745b7931abfbc Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 18 Oct 2024 14:11:39 +1100 Subject: [PATCH] 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. --- bitcoin/src/blockdata/transaction.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bitcoin/src/blockdata/transaction.rs b/bitcoin/src/blockdata/transaction.rs index faf94e1cd..5cb671e07 100644 --- a/bitcoin/src/blockdata/transaction.rs +++ b/bitcoin/src/blockdata/transaction.rs @@ -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`]. ///