-
Notifications
You must be signed in to change notification settings - Fork 70
Open
Description
One of these should be removed.
/// Information about a [`Transaction`]s output.
#[derive(Deserialize, Clone, Debug, PartialEq, Eq)]
pub struct Vout {
/// The value of the output, in satoshis.
pub value: u64,
/// The ScriptPubKey that the output is locked to, as a [`ScriptBuf`].
pub scriptpubkey: ScriptBuf,
}
/// Information about a previous output.
#[derive(Deserialize, Clone, Debug, PartialEq, Eq)]
pub struct PrevOut {
/// The value of the previous output, in satoshis.
pub value: u64,
/// The ScriptPubKey that the previous output is locked to, as a [`ScriptBuf`].
pub scriptpubkey: ScriptBuf,
}Metadata
Metadata
Assignees
Labels
No labels