Struct bitcoin::blockdata::transaction::TxIn [−][src]
pub struct TxIn { pub previous_output: OutPoint, pub script_sig: Script, pub sequence: u32, pub witness: Vec<Vec<u8>>, }
A transaction input, which defines old coins to be consumed
Fields
previous_output: OutPoint
The reference to the previous output that is being used an an input
script_sig: Script
The script which pushes values on the stack which will cause the referenced output’s script to accept
sequence: u32
The sequence number, which suggests to miners which of two conflicting transactions should be preferred, or 0xFFFFFFFF to ignore this feature. This is generally never used since the miner behaviour cannot be enforced.
witness: Vec<Vec<u8>>
Witness data: an array of byte-arrays. Note that this field is not (de)serialized with the rest of the TxIn in Encodable/Decodable, as it is (de)serialized at the end of the full Transaction. It is (de)serialized with the rest of the TxIn in other (de)serialization routines.
Trait Implementations
impl<'de> Deserialize<'de> for TxIn
[src]
impl<'de> Deserialize<'de> for TxIn
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl PartialOrd<TxIn> for TxIn
[src]
impl PartialOrd<TxIn> for TxIn
[src]