Skip to main content

TxOut

Type Alias TxOut 

Source
pub type TxOut = TxOut;
Expand description

Canonical transaction output type.

Aliased Type§

pub struct TxOut {
    pub value: Amount,
    pub script_pubkey: ScriptBuf,
}

Fields§

§value: Amount

The value of the output, in satoshis.

§script_pubkey: ScriptBuf

The script which must be satisfied for the output to be spent.