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:
parent
265589d93d
commit
b7e6c698f8
|
@ -127,7 +127,9 @@ impl TxIn {
|
||||||
sequence: Sequence::MAX,
|
sequence: Sequence::MAX,
|
||||||
witness: Witness::new(),
|
witness: Witness::new(),
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
impl TxIn {
|
||||||
/// Returns true if this input enables the [`absolute::LockTime`] (aka `nLockTime`) of its
|
/// Returns true if this input enables the [`absolute::LockTime`] (aka `nLockTime`) of its
|
||||||
/// [`Transaction`].
|
/// [`Transaction`].
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue